:root {
  --ink: #18332a;
  --soft: #5a6f66;
  --forest: #176b45;
  --forest-dark: #105137;
  --mint: #eaf4ee;
  --paper: #fffefa;
  --line: #dfe7e1;
  --orange: #d46b30;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(24, 51, 42, 0.08);
  background: rgba(255, 254, 250, 0.94);
  backdrop-filter: blur(16px);
}
.header-inner {
  max-width: 1180px;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  color: white;
  background: var(--forest);
}
.brand-mark svg {
  width: 31px;
  height: 31px;
}
.brand strong,
.brand small,
.visual-caption strong,
.visual-caption small,
.service-card strong,
.service-card small,
.phase strong,
.phase small {
  display: block;
}
.brand strong {
  font-size: 17px;
  letter-spacing: 0.04em;
}
.brand small {
  margin-top: 3px;
  color: #7a8b84;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.top-nav {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.top-nav a {
  position: relative;
  padding: 27px 0 24px;
  color: #66776f;
  font-size: 14px;
  font-weight: 600;
}
.top-nav a:hover,
.top-nav a.active {
  color: var(--forest);
}
.top-nav a.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 17px;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--forest);
  transform: translateX(-50%);
}
.login-button {
  min-width: 112px;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #cbd9d1;
  border-radius: 11px;
  color: var(--forest-dark);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 650;
}
.login-button:hover {
  border-color: var(--forest);
  background: var(--mint);
}
.login-button svg {
  width: 18px;
  height: 18px;
}

.hero {
  max-width: 1180px;
  min-height: 535px;
  margin: 0 auto;
  padding: 70px 24px 48px;
  display: grid;
  grid-template-columns: 1.14fr 0.86fr;
  align-items: center;
  gap: 62px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--forest);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.eyebrow span {
  width: 22px;
  height: 2px;
  background: var(--orange);
}
.hero h1 {
  margin: 18px 0 20px;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: clamp(42px, 5vw, 62px);
  line-height: 1.16;
  letter-spacing: -0.04em;
}
.hero h1 em {
  color: var(--forest);
  font-style: normal;
}
.hero-copy {
  max-width: 590px;
  margin: 0;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.85;
}
.search-panel {
  margin-top: 32px;
  padding: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  border: 1px solid #d6e0d9;
  border-radius: 15px;
  background: white;
  box-shadow: 0 12px 35px rgba(31, 67, 54, 0.09);
}
.location-picker {
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--forest-dark);
  background: transparent;
  cursor: pointer;
  font-weight: 650;
  white-space: nowrap;
}
.location-picker svg,
.search-field svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}
.search-field {
  min-width: 0;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #85968e;
}
.search-field input {
  width: 100%;
  padding: 12px 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: 14px;
}
.search-field input::placeholder {
  color: #9baaa3;
}
.search-button {
  padding: 12px 23px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 700;
}
.search-button:hover,
.submit-login:hover {
  background: var(--forest-dark);
}
.status-line {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #718279;
  font-size: 12px;
}
.status-line a {
  margin-left: 6px;
  color: var(--forest);
  font-weight: 700;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c5cec9;
}
.status-dot.online {
  background: #30a568;
  box-shadow: 0 0 0 4px rgba(48, 165, 104, 0.12);
}
.status-dot.offline {
  background: #c44d3c;
}

.hero-visual {
  position: relative;
  min-height: 390px;
}
.landscape {
  position: absolute;
  inset: 10px 0 42px;
  overflow: hidden;
  border-radius: 38% 38% 28px 28px;
  background: #f1ead9;
}
.sun {
  position: absolute;
  top: 47px;
  right: 68px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #e8a34c;
}
.hill {
  position: absolute;
  border-radius: 50% 50% 0 0;
}
.hill-back {
  right: -75px;
  bottom: 112px;
  width: 430px;
  height: 210px;
  background: #abc8ad;
  transform: rotate(-4deg);
}
.hill-front {
  left: -100px;
  bottom: 78px;
  width: 480px;
  height: 220px;
  background: #6a9b74;
  transform: rotate(7deg);
}
.road {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: -60px;
  width: 110px;
  height: 260px;
  border-radius: 50%;
  background: #e9d7b7;
  transform: translateX(-20%) rotate(18deg);
}
.house {
  position: absolute;
  z-index: 3;
  width: 62px;
  height: 49px;
  border-radius: 3px;
  background: #f8f0df;
}
.house::before {
  content: '';
  position: absolute;
  left: -7px;
  top: -27px;
  border-left: 38px solid transparent;
  border-right: 38px solid transparent;
  border-bottom: 31px solid #b84c3e;
}
.house span {
  position: absolute;
  left: 24px;
  bottom: 0;
  width: 17px;
  height: 27px;
  background: #7e5e44;
}
.house-a {
  left: 87px;
  bottom: 101px;
}
.house-b {
  right: 83px;
  bottom: 91px;
  transform: scale(0.78);
}
.tree {
  position: absolute;
  z-index: 4;
  width: 21px;
  height: 53px;
  border-radius: 50% 50% 45% 45%;
  background: #2f704b;
}
.tree::after {
  content: '';
  position: absolute;
  left: 9px;
  bottom: -20px;
  width: 4px;
  height: 24px;
  background: #70533c;
}
.tree-a {
  left: 51px;
  bottom: 95px;
}
.tree-b {
  right: 43px;
  bottom: 117px;
  transform: scale(0.82);
}
.field-lines {
  position: absolute;
  z-index: 1;
  left: -15%;
  right: -15%;
  bottom: 0;
  height: 103px;
  background: repeating-linear-gradient(9deg, #d7bb74 0 5px, #ead597 5px 16px);
}
.visual-caption {
  position: absolute;
  z-index: 6;
  right: -8px;
  bottom: 15px;
  width: 230px;
  padding: 15px 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(23, 107, 69, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 13px 32px rgba(34, 64, 52, 0.13);
}
.caption-icon {
  width: 39px;
  height: 39px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--forest);
  background: var(--mint);
}
.caption-icon svg {
  width: 23px;
  height: 23px;
}
.visual-caption strong {
  font-size: 13px;
}
.visual-caption small {
  margin-top: 4px;
  color: #809087;
  font-size: 10px;
}

.service-section {
  padding: 78px max(24px, calc((100% - 1132px) / 2)) 86px;
  background: #f7f9f5;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}
.section-heading h2,
.progress-copy h2 {
  margin: 9px 0 0;
  font-family: 'Songti SC', 'STSong', serif;
  font-size: 30px;
  letter-spacing: -0.03em;
}
.section-kicker {
  color: var(--forest);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.section-heading > p {
  max-width: 360px;
  margin: 0 0 3px;
  color: #7a8b83;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}
.section-actions {
  max-width: 410px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}
.section-actions p {
  margin: 0;
  color: #7a8b83;
  font-size: 13px;
  line-height: 1.7;
  text-align: right;
}
.publish-button {
  flex: 0 0 auto;
  padding: 10px 15px;
  border: 1px solid var(--forest);
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}
.publish-button:hover {
  background: var(--forest-dark);
}
.service-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 118px;
  padding: 21px;
  display: flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #e2e8e3;
  border-radius: 15px;
  color: var(--ink);
  background: white;
  cursor: pointer;
  text-align: left;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: #a9c6b4;
}
.service-icon {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 13px;
}
.service-icon svg {
  width: 26px;
  height: 26px;
}
.service-icon.green {
  color: #28734e;
  background: #e5f2e9;
}
.service-icon.blue {
  color: #356f83;
  background: #e5f0f2;
}
.service-icon.orange {
  color: #a85b2e;
  background: #f7ebdf;
}
.service-icon.gold {
  color: #927026;
  background: #f6efd9;
}
.service-icon.purple {
  color: #675d91;
  background: #eeeaf5;
}
.service-icon.red {
  color: #9a4e42;
  background: #f5e8e4;
}
.service-card strong {
  font-size: 15px;
}
.service-card small {
  margin-top: 6px;
  color: #819087;
  font-size: 11px;
}
.service-card i {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 4px 7px;
  border-radius: 6px;
  color: #7b8982;
  background: #f1f3f1;
  font-size: 9px;
  font-style: normal;
}
.service-card i.ready {
  color: var(--forest);
  background: #e5f2e9;
  font-weight: 700;
}

.catalog-panel {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dfe8e1;
  border-radius: 18px;
  background: white;
}
.catalog-heading {
  min-height: 68px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #edf1ee;
}
.catalog-heading div {
  display: grid;
  gap: 4px;
}
.catalog-heading span {
  color: #84938b;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}
.catalog-heading strong {
  font-size: 14px;
}
.catalog-heading button {
  padding: 7px 11px;
  border: 1px solid #d5e0d9;
  border-radius: 8px;
  color: var(--forest);
  background: #f7faf8;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}
.catalog-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.catalog-card {
  min-height: 160px;
  padding: 22px;
  border-right: 1px solid #edf1ee;
  border-bottom: 1px solid #edf1ee;
}
.catalog-card:nth-child(3n) {
  border-right: 0;
}
.catalog-card .catalog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #75877e;
  font-size: 10px;
}
.catalog-card .catalog-type {
  padding: 4px 7px;
  border-radius: 6px;
  color: var(--forest);
  background: var(--mint);
  font-weight: 750;
}
.catalog-card h3 {
  margin: 16px 0 8px;
  font-size: 17px;
}
.catalog-card p {
  min-height: 36px;
  margin: 0;
  overflow: hidden;
  color: #74867d;
  font-size: 12px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.catalog-card > strong,
.catalog-card-footer > strong {
  margin-top: 15px;
  display: block;
  color: #b05d2f;
  font-size: 16px;
}

.catalog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.catalog-card-footer button,
.order-actions button {
  padding: 9px 13px;
  border: 0;
  border-radius: 9px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-size: 11px;
  font-weight: 750;
}
.order-actions button.secondary {
  color: #786156;
  background: #f3ece7;
}
.catalog-empty {
  padding: 42px 24px;
  text-align: center;
}
.catalog-empty > span {
  width: 42px;
  height: 42px;
  margin: 0 auto 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #84938b;
  background: #eef2ef;
  font-size: 11px;
  font-weight: 800;
}
.catalog-empty strong {
  display: block;
  font-size: 14px;
}
.catalog-empty p {
  max-width: 560px;
  margin: 8px auto 0;
  color: #7b8c83;
  font-size: 11px;
  line-height: 1.7;
}

.progress-section {
  max-width: 1132px;
  margin: 0 auto;
  padding: 92px 0;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.progress-copy p {
  margin: 20px 0 24px;
  color: var(--soft);
  font-size: 14px;
  line-height: 1.85;
}
.progress-copy a {
  color: var(--forest);
  font-size: 13px;
  font-weight: 750;
  border-bottom: 1px solid #7eaa92;
}
.phase-list {
  border-top: 1px solid var(--line);
}
.phase {
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--line);
}
.phase > span {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #84938b;
  background: #f1f3f1;
  font-size: 11px;
  font-weight: 800;
}
.phase p {
  margin: 0;
}
.phase strong {
  font-size: 14px;
}
.phase small {
  margin-top: 4px;
  color: #84938b;
  font-size: 11px;
}
.phase > i {
  color: #8a9790;
  font-size: 10px;
  font-style: normal;
}
.phase.done > span {
  color: white;
  background: var(--forest);
}
.phase.done > i {
  color: var(--forest);
  font-weight: 700;
}
.phase.current > span {
  color: #98511f;
  background: #f4e7d7;
}
.phase.current > i {
  padding: 5px 8px;
  border-radius: 6px;
  color: #98511f;
  background: #f4e7d7;
}

footer {
  padding: 28px max(24px, calc((100% - 1132px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #84928b;
  background: #16382d;
  font-size: 11px;
}
footer div {
  display: flex;
  align-items: center;
  gap: 16px;
}
footer strong {
  color: white;
  font-size: 13px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(13, 35, 27, 0.55);
  backdrop-filter: blur(6px);
}
.modal-backdrop[hidden] {
  display: none;
}
.login-modal {
  position: relative;
  width: min(420px, 100%);
  padding: 34px;
  border-radius: 20px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  border: 0;
  color: #77867f;
  background: transparent;
  cursor: pointer;
  font-size: 27px;
  font-weight: 300;
}
.modal-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: var(--forest);
}
.modal-mark svg {
  width: 33px;
  height: 33px;
}
.login-modal h2 {
  margin: 20px 0 6px;
  font-size: 24px;
}
.login-modal > p {
  margin: 0 0 24px;
  color: #7a8b83;
  font-size: 13px;
}
.login-modal label {
  display: grid;
  gap: 8px;
  color: #53675e;
  font-size: 12px;
  font-weight: 700;
}
.login-modal input {
  width: 100%;
  padding: 12px 13px;
  border: 1px solid #d5ded8;
  border-radius: 10px;
  outline: 0;
  color: var(--ink);
}
.login-modal input:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.1);
}
.code-row {
  margin-top: 15px;
  display: grid;
  grid-template-columns: 1fr 116px;
  align-items: end;
  gap: 10px;
}
.code-row button {
  height: 43px;
  border: 1px solid #bdd0c4;
  border-radius: 10px;
  color: var(--forest);
  background: var(--mint);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.code-row button:disabled {
  cursor: wait;
  opacity: 0.6;
}
.form-help {
  min-height: 18px;
  margin: 10px 0 15px;
  color: #87958e;
  font-size: 10px;
}
.form-help.error {
  color: #b34e3f;
}
.submit-login {
  width: 100%;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  color: white;
  background: var(--forest);
  cursor: pointer;
  font-weight: 750;
}
.publish-modal {
  position: relative;
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  padding: 32px;
  overflow: auto;
  border-radius: 20px;
  background: white;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}
.publish-intro h2 {
  margin: 8px 0 6px;
  font-size: 24px;
}
.publish-intro p {
  margin: 0;
  color: #788981;
  font-size: 12px;
  line-height: 1.6;
}
.publish-tabs {
  margin: 24px 0 20px;
  padding: 4px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-radius: 11px;
  background: #f0f4f1;
}
.publish-tabs button {
  padding: 9px;
  border: 0;
  border-radius: 8px;
  color: #6d7d75;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}
.publish-tabs button.active {
  color: var(--forest-dark);
  background: white;
  box-shadow: 0 2px 8px rgba(24, 51, 42, 0.08);
}
.publish-pane[hidden] {
  display: none;
}
.publish-form,
.publish-form label {
  display: grid;
  gap: 8px;
}
.publish-form {
  gap: 15px;
}
.publish-form label {
  color: #53675e;
  font-size: 11px;
  font-weight: 700;
}
.publish-form input,
.publish-form select,
.publish-form textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d5ded8;
  border-radius: 9px;
  outline: 0;
  color: var(--ink);
  background: white;
}
.publish-form textarea {
  resize: vertical;
}
.publish-form input:focus,
.publish-form select:focus,
.publish-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(23, 107, 69, 0.1);
}
.publish-form select:disabled {
  color: #9ba7a1;
  background: #f4f6f4;
}
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.field-grid.four {
  grid-template-columns: repeat(4, 1fr);
}
.publish-message {
  min-height: 17px;
  margin: 0;
  color: #7b8a83;
  font-size: 10px;
}
.publish-message.error {
  color: #b34e3f;
}
.my-status-list {
  display: grid;
  gap: 10px;
  color: #74847c;
  font-size: 12px;
}
.status-card {
  padding: 14px 15px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  border: 1px solid #e0e7e2;
  border-radius: 11px;
  background: #fafbf9;
}
.status-card strong {
  color: var(--ink);
  font-size: 13px;
}
.status-card span {
  color: var(--forest);
  font-size: 10px;
  font-weight: 750;
}
.status-card small {
  grid-column: 1 / -1;
  color: #87968f;
}

.transaction-notice {
  margin-bottom: 14px;
  padding: 12px 14px;
  border: 1px solid #d8e5dc;
  border-radius: 10px;
  color: #62776d;
  background: #f2f8f4;
  font-size: 11px;
  line-height: 1.6;
}
.order-card {
  grid-template-columns: minmax(0, 1.2fr) auto minmax(190px, auto);
}
.order-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 28px;
  padding: 11px 18px;
  border-radius: 9px;
  color: white;
  background: #193c30;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 12px);
  transition: 0.2s ease;
  font-size: 12px;
}
.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

@media (max-width: 900px) {
  .header-inner {
    gap: 20px;
  }
  .top-nav {
    display: none;
  }
  .brand {
    min-width: 0;
    margin-right: auto;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }
  .hero-visual {
    min-height: 340px;
  }
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-card:nth-child(3n) {
    border-right: 1px solid #edf1ee;
  }
  .catalog-card:nth-child(2n) {
    border-right: 0;
  }
  .field-grid.four {
    grid-template-columns: repeat(2, 1fr);
  }
  .progress-section {
    padding: 72px 24px;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .header-inner {
    height: 66px;
    padding: 0 16px;
  }
  .brand small,
  .login-button span {
    display: none;
  }
  .brand strong {
    font-size: 15px;
  }
  .brand-mark {
    width: 39px;
    height: 39px;
  }
  .login-button {
    min-width: auto;
    padding: 9px;
  }
  .hero {
    padding: 42px 18px 34px;
    gap: 30px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-copy {
    font-size: 14px;
  }
  .search-panel {
    grid-template-columns: 1fr auto;
  }
  .location-picker {
    grid-column: 1 / -1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .hero-visual {
    min-height: 300px;
  }
  .landscape {
    inset: 0 0 28px;
  }
  .service-section {
    padding: 58px 18px;
  }
  .section-heading {
    display: block;
  }
  .section-heading > p,
  .section-actions p {
    margin-top: 12px;
    text-align: left;
  }
  .section-actions {
    width: 100%;
    max-width: none;
    margin-top: 16px;
    align-items: flex-start;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .catalog-list {
    grid-template-columns: 1fr;
  }
  .catalog-card,
  .catalog-card:nth-child(2n),
  .catalog-card:nth-child(3n) {
    border-right: 0;
  }
  .progress-section {
    padding: 60px 18px;
  }
  footer {
    padding: 25px 18px;
    display: block;
    line-height: 1.8;
  }
  footer > span,
  footer div span {
    display: block;
    margin-top: 8px;
  }
  footer div {
    display: block;
  }
  .login-modal {
    padding: 28px 22px;
  }
  .publish-modal {
    padding: 26px 18px;
  }
  .field-grid,
  .field-grid.four {
    grid-template-columns: 1fr;
  }
  .publish-tabs,
  .order-card {
    grid-template-columns: repeat(2, 1fr);
  }
}
