:root {
  --blue: #096ed4;
  --blue-deep: #034f9e;
  --cyan: #00a8d8;
  --ink: #111827;
  --muted: #5f6f85;
  --line: #dbe5ef;
  --soft: #f3f8fc;
  --pale: #eef7fb;
  --white: #ffffff;
  --green: #0f8a72;
  --shadow: 0 18px 50px rgba(6, 45, 84, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Noto Sans SC", "Microsoft YaHei", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 48px;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(219, 229, 239, 0.85);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 38px;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  font-weight: 800;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 12px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 27px 0 25px;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  content: "";
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font-size: 22px;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(560px, 1.35fr);
  min-height: 626px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, #ffffff 0%, #ffffff 39%, #edf7fb 100%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  padding: 76px 0 80px 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h2 {
  margin: 12px 0 0;
  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.18;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0;
}

.hero-text {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-deep));
  box-shadow: 0 12px 24px rgba(9, 110, 212, 0.18);
}

.button.secondary {
  color: var(--blue-deep);
  border-color: rgba(9, 110, 212, 0.38);
  background: var(--white);
}

.hero-media {
  position: relative;
  min-height: 626px;
}

.hero-media::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 30%;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0) 100%);
  content: "";
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 626px;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 26px 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip i {
  grid-row: span 2;
  color: var(--blue);
  font-size: 34px;
}

.proof-strip strong {
  font-size: 18px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

section {
  scroll-margin-top: 90px;
}

.business,
.catalog,
.scenes,
.service,
.contact {
  padding: 72px 64px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  max-width: 1320px;
  margin: 0 auto 28px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading.compact {
  display: block;
  margin-bottom: 26px;
}

.business {
  background: linear-gradient(180deg, #f8fbfe, #ffffff);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 1320px;
  margin: 0 auto;
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(280px, 1fr);
  align-items: stretch;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.business-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-copy {
  padding: 34px 34px 30px;
}

.panel-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-weight: 800;
}

.thread-panel .panel-label,
.thread-panel a {
  color: var(--green);
}

.panel-copy h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.25;
}

.panel-copy p:not(.panel-label) {
  margin: 14px 0 0;
  color: var(--muted);
}

.panel-copy ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
  color: #31425a;
  font-size: 15px;
}

.panel-copy li {
  position: relative;
  padding-left: 18px;
}

.panel-copy li::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}

.panel-copy a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 800;
}

.catalog {
  background: var(--white);
}

.tabs {
  display: flex;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.tab {
  position: relative;
  min-width: 138px;
  padding: 16px 24px;
  border: 0;
  color: var(--muted);
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.tab::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  content: "";
}

.tab.active {
  color: var(--blue);
}

.tab.active::after {
  transform: scaleX(1);
}

.catalog-table {
  display: none;
  max-width: 1320px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.catalog-table.active {
  display: block;
}

.catalog-table div {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding: 22px 6px;
  border-top: 1px solid var(--line);
}

.catalog-table strong {
  font-size: 17px;
}

.catalog-table span {
  color: var(--muted);
}

.scenes {
  background: var(--soft);
}

.scene-list {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.scene-list span {
  display: grid;
  place-items: center;
  min-height: 88px;
  padding: 0 14px;
  background: var(--white);
  color: #24364f;
  font-weight: 800;
  text-align: center;
}

.service {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(520px, 1.2fr);
  gap: 42px;
  align-items: start;
  background: var(--white);
}

.service-copy {
  max-width: 480px;
}

.service-copy h2,
.contact-info h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.25;
}

.service-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
}

.service-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.service-steps div {
  min-height: 150px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-steps div:nth-child(2n) {
  border-right: 0;
}

.service-steps div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.service-steps span {
  color: var(--blue);
  font-weight: 800;
}

.service-steps strong {
  display: block;
  margin-top: 10px;
  font-size: 19px;
}

.service-steps p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 0.8fr);
  gap: 44px;
  align-items: start;
  background: linear-gradient(135deg, #f5fbff, #ffffff);
  border-top: 1px solid var(--line);
}

.contact-rows {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.contact-rows p {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 0;
  color: #2f4058;
  font-size: 16px;
}

.contact-rows i {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
  font-size: 22px;
}

.inquiry-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: #27384f;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  outline: none;
}

.inquiry-form textarea {
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(9, 110, 212, 0.1);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-note.success {
  color: var(--green);
  font-weight: 700;
}

.form-note.error {
  color: #b42318;
  font-weight: 700;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
  transform: none;
}

.admin-page {
  min-height: 100vh;
  background: #f4f8fc;
}

.admin-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 64px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.admin-header h1 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
}

.admin-header span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 36px 24px 70px;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 18px;
}

.admin-stats div {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-stats span {
  color: var(--muted);
  font-weight: 700;
}

.admin-stats strong {
  display: block;
  margin-top: 8px;
  color: var(--blue);
  font-size: 38px;
  line-height: 1;
}

.mail-settings {
  margin: 22px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 61, 111, 0.06);
}

.mail-settings-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.mail-settings-head h2 {
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.2;
}

.mail-settings-head span {
  flex: 0 0 auto;
  padding: 7px 11px;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f2ff;
  font-size: 13px;
  font-weight: 800;
}

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

.mail-settings-form label {
  display: grid;
  gap: 8px;
  color: var(--dark);
  font-weight: 800;
}

.mail-settings-form input {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid #d5e2f0;
  border-radius: 6px;
  background: #fbfdff;
  color: var(--dark);
  font: inherit;
}

.mail-settings-form input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(20, 111, 209, 0.13);
}

.mail-toggle {
  align-content: end;
  grid-template-columns: auto 1fr;
  gap: 10px;
  min-height: 78px;
}

.mail-toggle input {
  width: 18px;
  min-height: 18px;
  align-self: center;
  accent-color: var(--blue);
}

.mail-toggle span {
  align-self: center;
}

.mail-settings-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: end;
}

.mail-settings-actions .button {
  min-height: 48px;
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0;
}

.admin-filter {
  display: inline-grid;
  grid-template-columns: repeat(3, minmax(86px, 1fr));
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.admin-filter button,
.refresh-button,
.inquiry-card-actions button {
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.admin-filter button {
  padding: 10px 18px;
}

.admin-filter button.active {
  color: var(--white);
  background: var(--blue);
}

.refresh-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--blue);
}

.inquiry-list {
  display: grid;
  gap: 14px;
}

.inquiry-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(8, 61, 111, 0.06);
}

.inquiry-card.done {
  opacity: 0.74;
}

.inquiry-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.inquiry-card-head strong {
  display: block;
  font-size: 20px;
}

.inquiry-card-head span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.inquiry-card-head mark {
  flex: 0 0 auto;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: #e7f2ff;
  font-weight: 800;
}

.inquiry-card.done mark {
  color: var(--green);
  background: #e8f6f2;
}

.inquiry-fields {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.inquiry-fields p {
  display: flex;
  gap: 10px;
  margin: 0;
  color: #2c3e57;
}

.inquiry-fields i {
  color: var(--blue);
  font-size: 18px;
}

.inquiry-card-actions {
  display: flex;
  justify-content: flex-end;
}

.inquiry-card-actions button {
  padding: 10px 14px;
  color: var(--blue);
  background: #eef7ff;
}

.admin-empty,
.admin-loading {
  padding: 26px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  background: var(--white);
  text-align: center;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 64px;
  color: #c7d2e2;
  background: #0e243b;
}

footer strong {
  color: var(--white);
}

@media (max-width: 1180px) {
  .site-header {
    padding: 0 28px;
  }

  .site-nav {
    gap: 20px;
  }

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

  .hero-copy {
    padding: 64px 38px 40px;
  }

  .hero-media,
  .hero-media img {
    min-height: 380px;
  }

  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
    padding: 18px 28px;
  }

  .proof-strip div:nth-child(2n) {
    border-right: 0;
  }

  .business-grid,
  .service,
  .contact {
    grid-template-columns: 1fr;
  }

  .scene-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 820px) {
  body {
    background: #f7fbff;
  }

  .site-header {
    height: auto;
    min-height: 62px;
    padding: 10px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    font-size: 17px;
  }

  .menu-button {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 18px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero-copy {
    padding: 34px 22px 24px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero h2 {
    max-width: 330px;
    font-size: 25px;
    line-height: 1.22;
  }

  .hero-text {
    max-width: 330px;
    margin-top: 16px;
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .button {
    min-height: 44px;
    padding: 0 12px;
    font-size: 14px;
  }

  .hero-media,
  .hero-media img {
    min-height: 236px;
  }

  .hero-media::before {
    display: none;
  }

  .proof-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 18px 16px;
    background: #f7fbff;
  }

  .proof-strip div {
    display: block;
    min-height: 118px;
    padding: 16px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .proof-strip div:nth-child(2n),
  .proof-strip div:last-child {
    border-right: 1px solid var(--line);
  }

  .proof-strip i {
    display: block;
    margin-bottom: 10px;
    height: 28px;
    font-size: 26px;
    line-height: 28px;
  }

  .proof-strip strong {
    display: block;
    font-size: 15px;
    line-height: 1.25;
  }

  .proof-strip span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.35;
  }

  .business,
  .catalog,
  .scenes,
  .service,
  .contact {
    padding: 44px 18px;
  }

  .section-heading {
    display: block;
    margin-bottom: 20px;
  }

  .section-heading h2,
  .service-copy h2,
  .contact-info h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
  }

  .business-panel {
    grid-template-columns: 1fr;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(8, 61, 111, 0.06);
  }

  .panel-copy {
    padding: 24px 22px 20px;
  }

  .panel-copy h3 {
    font-size: 22px;
  }

  .panel-copy p:not(.panel-label),
  .panel-copy ul {
    font-size: 14px;
  }

  .business-panel img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
    object-fit: cover;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
  }

  .tab {
    min-width: 0;
    padding: 12px 6px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    white-space: nowrap;
    touch-action: manipulation;
  }

  .tab::after {
    display: none;
  }

  .tab.active {
    color: var(--white);
    background: var(--blue);
  }

  .catalog-table div {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .catalog-table span {
    font-size: 14px;
  }

  .scene-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .scene-list span {
    min-height: 58px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 14px;
  }

  .service-steps {
    grid-template-columns: 1fr;
  }

  .service-steps div,
  .service-steps div:nth-child(2n),
  .service-steps div:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-steps div:last-child {
    border-bottom: 0;
  }

  .contact {
    gap: 26px;
  }

  .contact-rows {
    gap: 12px;
    margin-top: 22px;
  }

  .contact-rows p {
    align-items: flex-start;
    font-size: 14px;
    line-height: 1.5;
  }

  .contact-rows i {
    flex-basis: 38px;
    width: 38px;
    height: 38px;
    border-radius: 8px;
    font-size: 20px;
  }

  .inquiry-form {
    padding: 20px;
    box-shadow: 0 14px 34px rgba(8, 61, 111, 0.08);
  }

  footer {
    display: grid;
    padding: 24px 22px;
  }

  .admin-header {
    display: grid;
    padding: 24px 18px;
  }

  .admin-actions {
    justify-content: stretch;
  }

  .admin-actions .button {
    flex: 1 1 0;
  }

  .admin-shell {
    padding: 24px 18px 52px;
  }

  .admin-stats {
    grid-template-columns: 1fr;
  }

  .admin-stats div {
    padding: 18px;
  }

  .mail-settings {
    padding: 18px;
  }

  .mail-settings-head {
    display: grid;
  }

  .mail-settings-head span {
    width: fit-content;
  }

  .mail-settings-form {
    grid-template-columns: 1fr;
  }

  .mail-toggle {
    min-height: auto;
  }

  .mail-settings-actions {
    display: grid;
  }

  .mail-settings-actions .button {
    width: 100%;
    justify-content: center;
  }

  .admin-toolbar {
    display: grid;
  }

  .admin-filter {
    width: 100%;
  }

  .refresh-button {
    justify-content: center;
  }

  .inquiry-card {
    padding: 18px;
  }

  .inquiry-card-head {
    display: grid;
  }

  .inquiry-card-head mark {
    width: fit-content;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    width: 42px;
    height: 32px;
    font-size: 13px;
  }

  .brand small {
    display: none;
  }

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

  .button {
    width: auto;
  }

}

@media (max-width: 360px) {
  .scene-list,
  .proof-strip,
  .hero-actions {
    grid-template-columns: 1fr;
  }
}
