:root {
  --ink: #15120f;
  --muted: #6f665a;
  --soft: #f4f0e8;
  --paper: #fffdf8;
  --line: #ddd3c4;
  --line-dark: #3a332b;
  --brand: #d72f24;
  --brand-dark: #a51f17;
  --gold: #b98b43;
  --green: #315846;
  --night: #171512;
  --night-2: #24201b;
  --shadow: 0 26px 80px rgba(24, 18, 12, .18);
  --radius: 6px;
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--soft);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button {
  border-radius: 0;
}

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

:focus-visible {
  outline: 3px solid rgba(215, 47, 36, .45);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  min-height: 94vh;
  padding: 22px 5vw 48px;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(10, 10, 10, .82), rgba(10, 10, 10, .52) 50%, rgba(10, 10, 10, .22)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=86") center / cover;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(18, 16, 13, .78);
  backdrop-filter: blur(18px);
}

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

.brand-logo {
  width: 52px;
  height: 52px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  background: var(--brand);
  color: #fff;
  font-weight: 950;
  text-transform: uppercase;
}

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

.brand-copy strong {
  font-size: 16px;
}

.brand-copy small {
  color: #d8d0c2;
  font-size: 12px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  font-weight: 750;
}

.nav-actions a:not(.button) {
  color: #f4eadc;
}

.phone {
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  white-space: normal;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 24px rgba(215, 47, 36, .22);
}

.button.primary:hover {
  background: var(--brand-dark);
}

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

.button.dark {
  background: var(--ink);
  color: #fff;
}

.button.large {
  min-height: 54px;
  padding: 16px 22px;
}

.button.compact {
  min-height: 40px;
  padding: 10px 14px;
}

.language-menu {
  position: relative;
}

.language-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.language-panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 80;
  min-width: 180px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.language-panel button {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.language-panel button:hover,
.language-panel button[aria-current="true"] {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
  align-items: end;
  gap: 52px;
  width: min(100%, var(--max));
  min-height: calc(94vh - 90px);
  margin: 0 auto;
  padding-top: 9vh;
}

.hero-copy {
  max-width: 900px;
  min-width: 0;
}

.eyebrow,
.panel-label {
  margin: 0 0 12px;
  color: var(--brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffc0aa;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(48px, 7vw, 90px);
  line-height: .92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.hero-lede {
  max-width: 740px;
  margin: 24px 0 0;
  color: #f3eadc;
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-command {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .18);
  background: rgba(23, 21, 18, .94);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .32);
}

.hero-image {
  position: relative;
  aspect-ratio: 1.2;
  background: var(--night-2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-command-body {
  padding: 24px;
}

.hero-command h2 {
  margin: 0;
  font-size: 28px;
}

.hero-command dl {
  display: grid;
  gap: 10px;
  margin: 20px 0;
}

.hero-command dl div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hero-command dt {
  color: #bfb5a6;
}

.hero-command dd {
  margin: 0;
  font-weight: 850;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.metrics div {
  padding: 28px 5vw;
  border-right: 1px solid #ebe2d5;
}

.metrics strong {
  display: block;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.1;
}

.metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section {
  padding: 76px 5vw;
}

.section > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  max-width: 850px;
}

.section-head h2,
.lead-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: 1;
  letter-spacing: 0;
}

.section-head > p:not(.eyebrow),
.lead-copy > p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.advisory-grid article,
.process-list article {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.advisory-grid span {
  color: var(--brand);
  font-weight: 950;
}

.advisory-grid h3,
.process-list h3 {
  margin: 18px 0 10px;
  font-size: 22px;
}

.advisory-grid p,
.process-list p {
  color: var(--muted);
  line-height: 1.58;
}

.catalogue {
  background: var(--night);
  color: #fff;
}

.catalogue .section-head h2 {
  color: #fff;
}

.catalogue-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
}

.result-count {
  margin: 0;
  color: #cfc7b8;
  font-weight: 850;
}

.command-bar {
  position: sticky;
  top: 94px;
  z-index: 30;
  display: grid;
  grid-template-columns: minmax(230px, 1.25fr) repeat(4, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 30px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(35, 31, 26, .96);
  backdrop-filter: blur(16px);
}

label span {
  display: block;
  margin-bottom: 7px;
  color: #b8ad9d;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(215, 47, 36, .12);
  outline: none;
}

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

.toolbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 11px;
  background: #302920;
  color: #f6efe4;
  font-size: 13px;
}

.text-button {
  border: 0;
  background: transparent;
  color: #f6efe4;
  cursor: pointer;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.property-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.property-card:hover,
.property-card:focus-visible {
  border-color: rgba(215, 47, 36, .55);
  box-shadow: 0 18px 48px rgba(24, 18, 12, .14);
  transform: translateY(-2px);
}

.property-media {
  position: relative;
  aspect-ratio: 1.22;
  overflow: hidden;
  background: #2a251f;
}

.property-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.property-card:hover .property-media img {
  transform: scale(1.035);
}

.badge,
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.badge {
  position: absolute;
  left: 12px;
  top: 12px;
  background: var(--brand);
  color: #fff;
}

.status-pill {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: rgba(255, 253, 248, .94);
  color: var(--ink);
}

.property-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.property-card h3 {
  margin: 12px 0 10px;
  font-size: 23px;
  line-height: 1.13;
}

.property-note {
  margin: 0 0 14px;
  color: #564e44;
  line-height: 1.5;
}

.specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: auto 0 14px;
}

.specs span {
  min-width: 0;
  padding: 10px 8px;
  background: var(--soft);
  color: #443c32;
  font-size: 12px;
  font-weight: 850;
  text-align: center;
}

.card-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid #ebe2d5;
}

.price {
  display: block;
  color: var(--brand);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.1;
}

.price-m2 {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}

.card-actions button,
.card-actions a {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-align: center;
}

.card-actions .light {
  background: var(--paper);
  color: var(--ink);
}

.empty-state {
  margin-top: 24px;
  padding: 42px;
  border: 1px solid var(--line-dark);
  background: var(--night-2);
}

.empty-state p {
  color: #cfc7b8;
}

.loading-state {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--night-2);
  color: #cfc7b8;
  font-weight: 850;
}

.process {
  background: var(--paper);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.process-list strong {
  color: var(--gold);
  font-size: 13px;
}

.lead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 44px;
  align-items: start;
  background: var(--soft);
}

.lead > * {
  width: auto;
  margin: 0;
}

.lead-copy {
  max-width: 720px;
  margin-left: auto;
}

.lead-form {
  display: grid;
  gap: 13px;
  width: 100%;
  max-width: 480px;
  margin-right: auto;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.shortlist-bar {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: var(--ink);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}

.shortlist-bar:not([hidden]) {
  transform: translateX(-50%);
}

.icon-button,
.dialog-close {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.property-dialog {
  width: min(1040px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  padding: 0;
  border: 0;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 30px 100px rgba(0, 0, 0, .45);
}

.property-dialog::backdrop {
  background: rgba(0, 0, 0, .62);
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
}

.dialog-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
}

.dialog-media {
  min-height: 560px;
  background: var(--night-2);
}

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

.dialog-copy {
  padding: 36px;
  overflow: auto;
}

.dialog-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1;
}

.dialog-copy p {
  color: var(--muted);
  line-height: 1.62;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 22px 0;
}

.detail-list div {
  padding: 13px;
  background: var(--soft);
}

.detail-list span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 32px 5vw;
  background: var(--ink);
  color: #cfc7b8;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: #fff;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  color: #fff;
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(21, 18, 15, .96);
  color: #fff;
  box-shadow: 0 24px 80px rgba(0, 0, 0, .35);
  backdrop-filter: blur(18px);
}

.cookie-banner p {
  margin: 6px 0 0;
  color: #d8d0c2;
  line-height: 1.5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.admin-body {
  min-height: 100vh;
  background: var(--soft);
}

.admin-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  min-height: 100vh;
}

.admin-sidebar {
  padding: 24px;
  background: var(--ink);
  color: #fff;
}

.admin-sidebar .brand {
  margin-bottom: 26px;
}

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

.admin-nav button,
.admin-nav a {
  min-height: 44px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.06);
  color: #fff;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.admin-nav button[aria-current="true"] {
  background: var(--brand);
}

.admin-main {
  padding: 28px;
}

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

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

.admin-login,
.admin-panel,
.admin-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 18px 60px rgba(24, 18, 12, .08);
}

.admin-login {
  max-width: 620px;
  margin: 8vh auto;
  padding: 24px;
}

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

.admin-card {
  padding: 18px;
}

.admin-card strong {
  display: block;
  font-size: 30px;
}

.admin-panel {
  padding: 18px;
  overflow: auto;
}

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

.admin-form .full {
  grid-column: 1 / -1;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.hidden {
  display: none !important;
}

@media (max-width: 1100px) {
  .hero,
  .lead {
    grid-template-columns: 1fr;
  }

  .lead-copy,
  .lead-form {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

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

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

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

@media (max-width: 760px) {
  .site-header {
    min-height: auto;
    padding: 14px 14px 34px;
  }

  .topbar {
    top: 8px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .brand-copy small,
  .nav-actions a:not(.button),
  .phone {
    display: none;
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .button {
    display: none;
  }

  .language-button {
    min-height: 40px;
    padding: 8px 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
    overflow: hidden;
  }

  .hero-copy,
  .hero-command {
    width: 100%;
    max-width: 340px;
    min-width: 0;
  }

  .hero h1 {
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.02;
    max-width: 100%;
    word-break: break-word;
  }

  .hero-lede {
    font-size: 16px;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-command {
    max-width: 520px;
  }

  .metrics,
  .property-grid,
  .advisory-grid,
  .process-list,
  .command-bar,
  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .metrics div {
    padding: 22px 16px;
    border-right: 0;
    border-bottom: 1px solid #ebe2d5;
  }

  .section {
    padding: 52px 16px;
  }

  .catalogue-head,
  .toolbar-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .command-bar {
    position: static;
  }

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

  .card-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .shortlist-bar {
    left: 12px;
    right: 12px;
    bottom: 12px;
    justify-content: space-between;
  }

  .shortlist-bar:not([hidden]) {
    transform: none;
  }

  .dialog-media,
  .dialog-media img {
    min-height: 300px;
  }

  .dialog-copy {
    padding: 24px;
  }

  .detail-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 12px;
    right: auto;
    bottom: 12px;
    width: min(340px, calc(100vw - 24px));
    max-width: min(340px, calc(100vw - 24px));
    overflow: hidden;
  }

  .cookie-banner > *,
  .cookie-actions {
    min-width: 0;
  }

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

  .cookie-actions .button {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 14px;
  }

  .admin-shell,
  .admin-form,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .admin-main {
    padding: 18px;
  }
}

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