:root {
  --ink: #182420;
  --muted: #64716c;
  --line: #dfe5de;
  --paper: #fffdf8;
  --wash: #f5f7f1;
  --mist: #eef6f4;
  --green: #0e6b57;
  --green-2: #104d44;
  --blue: #285a7b;
  --gold: #c1882d;
  --danger: #a64033;
  --shadow: 0 18px 50px rgba(24, 36, 32, 0.12);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(223, 229, 222, 0.9);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.brand strong {
  display: block;
  line-height: 1.2;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.3;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  font-size: 15px;
}

.site-nav > a,
.nav-group-btn,
.nav-wechat {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 4px;
  color: #25352f;
  border: 0;
  background: transparent;
  white-space: nowrap;
}

.site-nav a.active {
  color: var(--green);
  font-weight: 700;
}

.nav-wechat {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.nav-group {
  position: relative;
}

.nav-menu {
  position: absolute;
  top: 100%;
  left: -10px;
  min-width: 220px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: 160ms ease;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav-menu a:hover {
  background: var(--wash);
}

.nav-toggle {
  display: none;
}

.icon-button {
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero-overlay,
.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(12, 30, 25, 0.78), rgba(12, 30, 25, 0.48) 48%, rgba(12, 30, 25, 0.18));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 420px;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 72px 0 84px;
}

.hero-copy {
  color: #fff;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  margin: 0 0 10px;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lede,
.page-hero-content p,
.section-heading p,
.bottom-cta p {
  font-size: 18px;
}

.hero-lede {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.9);
  margin: 22px 0 0;
}

.hero-actions,
.page-hero-content .button {
  margin-top: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.button svg,
button svg,
a svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: var(--green);
  border-color: var(--green);
}

.button.primary:hover {
  background: var(--green-2);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button.ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.quick-form,
.lead-form-shell,
.admin-login-card {
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
}

.quick-form {
  padding: 22px;
}

.quick-form h2 {
  font-size: 24px;
  margin-bottom: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: #2b3934;
  font-weight: 700;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  margin: 0 0 9px;
  color: #2b3934;
  font-weight: 800;
}

legend .muted,
label .muted {
  display: block;
  margin-top: 2px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #ccd7d0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.quick-form label + label,
.quick-form label + .button {
  margin-top: 12px;
}

.section {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 84px 0;
}

.section.tinted {
  width: 100%;
  max-width: none;
  padding-left: max(18px, calc((100vw - var(--container)) / 2));
  padding-right: max(18px, calc((100vw - var(--container)) / 2));
  background: var(--wash);
}

.section.compact {
  padding-top: 64px;
  padding-bottom: 64px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  margin: 14px 0 0;
}

.cards {
  display: grid;
  gap: 16px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.card svg {
  width: 26px;
  height: 26px;
  color: var(--gold);
  margin-bottom: 18px;
}

.card p {
  color: var(--muted);
  margin: 0;
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card .text-link {
  margin-top: auto;
}

.text-link,
.text-button {
  color: var(--green);
  font-weight: 800;
  border: 0;
  background: transparent;
  padding: 0;
}

.text-link:hover,
.text-button:hover {
  text-decoration: underline;
}

.tag-grid,
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-grid span,
.area-list span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
}

.criteria-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.criteria-grid span {
  min-height: 72px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-weight: 800;
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 7vw, 82px);
  align-items: start;
}

.split p {
  color: var(--muted);
}

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process li {
  min-height: 184px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.process span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-weight: 800;
}

.process strong {
  display: block;
  font-size: 18px;
}

.process p {
  color: var(--muted);
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin: 0 0 14px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.24em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.check-list li::after {
  position: absolute;
  left: 5px;
  top: 0.49em;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

.bottom-cta {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 48px);
  border-radius: var(--radius);
  background: var(--green-2);
  color: #fff;
}

.bottom-cta p {
  color: rgba(255, 255, 255, 0.84);
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

.page-hero.simple {
  min-height: 440px;
  background: linear-gradient(135deg, #f1f7f2, #fff7e8);
}

.page-hero.simple::before {
  display: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  color: #fff;
  padding: 72px 0;
}

.page-hero.simple .page-hero-content {
  color: var(--ink);
}

.page-hero-content p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero.simple .page-hero-content p {
  color: var(--muted);
}

.notice-band {
  background: var(--mist);
  border-top: 1px solid #d8e7e3;
  border-bottom: 1px solid #d8e7e3;
  padding: 24px max(18px, calc((100vw - var(--container)) / 2));
  font-weight: 700;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.info-table td:first-child {
  width: 52%;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--wash);
  font-weight: 800;
}

.form-page {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0 92px;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 104px;
}

.form-intro h1 {
  font-size: clamp(34px, 5vw, 52px);
}

.form-intro p {
  color: var(--muted);
}

.contact-strip {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.contact-strip.centered {
  justify-content: center;
  align-items: center;
}

.qr {
  width: 132px;
  height: 132px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.qr.small {
  width: 92px;
  height: 92px;
}

.lead-form-shell {
  padding: 24px;
  background: #fff;
}

.lead-form-fallback {
  display: grid;
  gap: 24px;
}

.fallback-step {
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
}

.fallback-step h2 {
  font-size: 22px;
  margin-bottom: 16px;
}

.form-progress {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.progress-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-weight: 800;
  gap: 14px;
}

.progress-track {
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8eee8;
}

.progress-fill {
  height: 100%;
  background: var(--green);
  width: 25%;
  transition: 180ms ease;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.choice {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 11px;
  border: 1px solid #ccd7d0;
  border-radius: var(--radius);
  background: #fff;
  font-weight: 700;
}

.choice input {
  width: 17px;
  min-height: 17px;
  accent-color: var(--green);
}

.form-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.form-message {
  min-height: 24px;
  color: var(--danger);
  font-weight: 700;
}

.inline-lead-card {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) repeat(2, minmax(160px, 1fr));
  gap: 16px;
  align-items: end;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}

.inline-lead-card h2 {
  font-size: clamp(24px, 3vw, 34px);
}

.inline-lead-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.thanks-page {
  min-height: calc(100vh - 76px);
  display: grid;
  place-items: center;
  padding: 64px 18px;
  background: var(--wash);
}

.thanks-card {
  width: min(720px, 100%);
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.thanks-card h1 {
  font-size: clamp(34px, 6vw, 58px);
}

.lead-id {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--mist);
  font-weight: 800;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-page {
  width: min(860px, calc(100% - 36px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.legal-page h1 {
  font-size: clamp(34px, 5vw, 54px);
  margin-bottom: 22px;
}

.legal-page p {
  color: #3e4e48;
  font-size: 18px;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: grid;
  gap: 10px;
}

.floating-actions a,
.floating-actions button {
  min-width: 156px;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(24, 36, 32, 0.18);
}

.floating-primary {
  color: #fff;
  background: var(--green);
}

.floating-secondary {
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
}

.wechat-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 18px;
  background: rgba(12, 24, 20, 0.48);
}

.wechat-modal.open {
  display: grid;
}

.wechat-modal-card {
  position: relative;
  width: min(420px, 100%);
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

.wechat-modal-card h2 {
  font-size: 30px;
}

.wechat-modal-card p {
  margin: 0;
  color: var(--muted);
}

.wechat-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
}

.site-footer {
  padding: 54px clamp(18px, 4vw, 52px) 92px;
  background: #16231f;
  color: #fff;
}

.footer-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 34px;
}

.site-footer h2 {
  font-size: 20px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.78);
}

.service-note {
  font-size: 14px;
}

.footer-contact .qr {
  margin-bottom: 12px;
}

.admin-body {
  background: #f4f6f1;
}

.admin-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.admin-login-card {
  width: min(420px, 100%);
  padding: 26px;
  background: #fff;
}

.admin-login-card h1 {
  font-size: 32px;
  margin-bottom: 8px;
}

.admin-login-card label {
  margin-top: 14px;
}

.admin-header {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid var(--line);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 20;
}

.admin-header nav {
  display: flex;
  gap: 8px;
}

.admin-header nav a {
  padding: 9px 12px;
  border-radius: var(--radius);
  font-weight: 800;
}

.admin-header nav a.active {
  background: var(--mist);
  color: var(--green);
}

.admin-shell {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 72px;
}

.admin-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-title h1 {
  font-size: 36px;
}

.admin-panel {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  margin-bottom: 18px;
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-grid .span-2 {
  grid-column: span 2;
}

.admin-grid .span-4 {
  grid-column: 1 / -1;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.lead-row,
.warehouse-row,
.match-row {
  display: grid;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.row-top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
}

.row-title {
  display: grid;
  gap: 4px;
}

.row-title strong {
  font-size: 18px;
}

.muted {
  color: var(--muted);
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--green-2);
  font-size: 13px;
  font-weight: 800;
}

.row-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.row-actions {
  display: grid;
  grid-template-columns: 150px 110px minmax(180px, 1fr) 180px auto;
  gap: 10px;
  align-items: end;
}

.row-actions textarea {
  min-height: 46px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  color: #34443e;
  font-size: 14px;
}

.detail-grid span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

@media (max-width: 1050px) {
  .cards.four,
  .process,
  .criteria-grid,
  .footer-grid,
  .admin-grid,
  .detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .quick-form {
    max-width: 520px;
  }

  .form-page,
  .split {
    grid-template-columns: 1fr;
  }

  .form-intro {
    position: static;
  }

  .row-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .inline-lead-card {
    grid-template-columns: 1fr 1fr;
  }

  .inline-lead-card > div {
    grid-column: 1 / -1;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .nav-menu {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    border: 0;
    padding: 0 0 0 12px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content,
  .page-hero-content {
    padding: 54px 0 64px;
  }

  .quick-form,
  .lead-form-shell {
    padding: 18px;
  }

  .section,
  .section.tinted {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .cards.three,
  .cards.four,
  .process,
  .criteria-grid,
  .footer-grid,
  .choice-grid,
  .form-grid,
  .admin-grid,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .inline-lead-card {
    grid-template-columns: 1fr;
  }

  .admin-grid .span-2,
  .admin-grid .span-4 {
    grid-column: auto;
  }

  .bottom-cta,
  .admin-title,
  .row-top {
    flex-direction: column;
    align-items: stretch;
  }

  .floating-actions {
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--line);
    background: #fff;
  }

  .floating-actions a,
  .floating-actions button {
    min-width: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .site-footer {
    padding-bottom: 102px;
  }

  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }

  .admin-header nav {
    overflow-x: auto;
  }

  .row-actions {
    grid-template-columns: 1fr;
  }
}
