:root {
  --bg: #eef3f7;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --surface-dark: rgba(255, 255, 255, 0.06);
  --text: #122033;
  --muted: #5d6d83;
  --line: rgba(18, 32, 51, 0.1);
  --line-strong: rgba(18, 32, 51, 0.16);
  --accent: #43d1da;
  --accent-strong: #0f8fa3;
  --accent-soft: rgba(67, 209, 218, 0.14);
  --dark: #0c1626;
  --cta-start: #ffb21d;
  --cta-end: #ff9900;
  --shadow: 0 24px 60px rgba(7, 16, 28, 0.12);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(67, 209, 218, 0.2), transparent 24%),
    radial-gradient(circle at right center, rgba(15, 143, 163, 0.1), transparent 20%),
    var(--bg);
  color: var(--text);
}

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

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

button,
input,
textarea {
  font: inherit;
}

input[type="color"].input,
.field input[type="color"] {
  min-height: 58px;
  padding: 6px;
  border-radius: 16px;
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.storage-banner {
  padding: 12px 18px;
  background: #fff4d9;
  color: #5d4600;
  border-bottom: 1px solid rgba(93, 70, 0, 0.15);
  text-align: center;
  font-weight: 700;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(20px);
  background: rgba(238, 243, 247, 0.82);
  border-bottom: 1px solid var(--line);
}

.topbar--admin {
  position: static;
}

.topbar__inner,
.topbar__actions,
.nav,
.hero__actions,
.section-head,
.admin-actions,
.inline-actions,
.cms-repeater__head {
  display: flex;
  align-items: center;
}

.topbar__inner {
  min-height: 78px;
  gap: 18px;
}

.topbar__actions,
.hero__actions,
.admin-actions,
.inline-actions,
.nav {
  gap: 12px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand__logo {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--dark), #214669);
  color: white;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand__logo--image {
  padding: 0;
  background: none;
  overflow: hidden;
}

.brand__logo-image {
  width: 100%;
  height: 100%;
  display: block;
}

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

.brand small,
.lead,
.site-card p,
.showroom p,
.panel__head p,
.form__note,
.field span,
.field__hint,
.empty,
.lead-card p,
.lead-card__time,
.cms-section__summary p,
.footer__hours {
  color: var(--muted);
}

.nav {
  margin-left: auto;
  flex-wrap: wrap;
}

.nav a {
  font-weight: 700;
}

.phone {
  font-weight: 800;
  white-space: nowrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #051218;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(67, 209, 218, 0.24);
}

.button--ghost {
  background: white;
  color: var(--text);
  box-shadow: inset 0 0 0 1px var(--line);
}

.button--quote {
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #111827;
  box-shadow: 0 16px 30px rgba(255, 153, 0, 0.22);
}

.button--small {
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.92rem;
  box-shadow: none;
}

.button--danger {
  color: #8b1e1e;
}

.button--file {
  position: relative;
  overflow: hidden;
}

.button--file input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.hero,
.section,
.footer,
.admin {
  padding: 34px 0 88px;
}

.hero {
  padding: 54px 0 110px;
}

.hero__grid,
.cta,
.footer__grid,
.admin__layout,
.bonus--panel {
  display: grid;
  gap: 24px;
}

.hero__grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
  gap: 56px;
  min-height: calc(100vh - 150px);
}

.hero__content {
  display: grid;
  align-content: start;
  gap: 22px;
  max-width: 680px;
  padding-top: 18px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 5.2rem);
  line-height: 0.98;
  margin-bottom: 18px;
}

.hero__content h1 {
  margin-bottom: 0;
  max-width: 10.5ch;
  letter-spacing: -0.035em;
}

h2 {
  font-size: clamp(1.8rem, 3.1vw, 2.9rem);
  line-height: 1.08;
  margin-bottom: 12px;
}

h3 {
  margin-bottom: 10px;
}

.lead {
  font-size: 1.08rem;
  max-width: 64ch;
}

.hero__content .lead {
  margin-bottom: 0;
  max-width: 56ch;
  line-height: 1.62;
}

.hero-card,
.site-card,
.gallery-card,
.panel,
.step,
.showroom,
.lead-card {
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.site-card {
  border-radius: 0;
}

.hero-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  gap: 22px;
  padding: 30px;
  overflow: hidden;
  min-height: auto;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(222, 242, 245, 0.82)),
    white;
}

.hero-card__media,
.hero-card__panel-media {
  overflow: hidden;
  border-radius: 24px;
}

.hero-card__media {
  position: relative;
  min-height: 360px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.26), rgba(222, 242, 245, 0.18));
}

.hero-card__image {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hero-card__panel {
  position: relative;
  width: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(12, 22, 38, 0.88);
  color: white;
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.hero-card__panel-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.hero-card__sale {
  margin: 18px 0 10px;
  color: #88ecf3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.check-list li {
  line-height: 1.5;
}

.check-list li::before {
  content: "\2022";
  color: var(--accent-strong);
  margin-right: 10px;
}

.section-head,
.cms-repeater__head {
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.section--dark {
  background: linear-gradient(180deg, rgba(12, 22, 38, 0.98), rgba(18, 32, 51, 0.96));
  color: white;
}

.section--dark .site-card,
.section--dark .step,
.section--dark .gallery-card {
  background: var(--surface-dark);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(67, 209, 218, 0.12), rgba(15, 143, 163, 0.18)),
    white;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid--categories {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.grid--products,
.grid--materials,
.grid--articles,
.grid--showrooms {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid--gallery {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.site-card,
.step,
.showroom,
.lead-card,
.panel {
  padding: 18px;
}

.site-card__image,
.gallery-card__image,
.showroom__image,
.bonus__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 20px;
}

.site-card__image {
  border-radius: 0;
}

.media-placeholder {
  display: block;
  background:
    linear-gradient(135deg, rgba(67, 209, 218, 0.12), rgba(15, 143, 163, 0.06)),
    #f7fbfd;
  border: 1px dashed rgba(18, 32, 51, 0.12);
}

.site-card__image--small {
  height: 180px;
}

.site-card__body,
.showroom__body {
  padding-top: 16px;
}

.site-card__price {
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--accent-strong);
}

.pill,
.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.84rem;
}

.pill {
  margin-bottom: 12px;
  background: rgba(67, 209, 218, 0.16);
  color: #86eef6;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.chip {
  background: white;
  border: 1px solid var(--line);
  font-weight: 700;
}

.gallery-card {
  position: relative;
  overflow: hidden;
  min-height: 360px;
}

.gallery-card__image {
  height: 100%;
  min-height: 360px;
  border-radius: 0;
}

.gallery-card__overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 24px;
  background: linear-gradient(180deg, rgba(12, 22, 38, 0), rgba(12, 22, 38, 0.88));
  color: white;
}

.cta,
.footer__grid,
.bonus--panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.form input,
.form textarea,
.input,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step strong {
  display: inline-flex;
  margin-bottom: 18px;
  font-size: 2rem;
  color: var(--accent);
}

.bonus--panel {
  align-items: center;
}

.bonus__copy,
.cta__copy,
.footer__info {
  align-self: center;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  font-weight: 800;
  color: var(--accent-strong);
}

.text-link--light {
  color: #8deaf3;
}

.admin {
  padding-top: 28px;
}

.admin-shell {
  display: grid;
  gap: 24px;
}

.admin-toolbar {
  padding: 24px;
}

.admin-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.admin-notify {
  padding: 24px;
  margin-bottom: 24px;
}

.admin-notify__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.admin-auth,
.inline-auth {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(12, 22, 38, 0.08);
  font-weight: 800;
}

.auth-badge--ok {
  background: rgba(67, 209, 118, 0.16);
  color: #0f6a2f;
}

.auth-badge--warn {
  background: rgba(255, 196, 68, 0.2);
  color: #7a5600;
}

.admin__layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  align-items: start;
}

.admin-stack {
  display: grid;
  gap: 20px;
}

.panel--sticky {
  position: sticky;
  top: 24px;
}

.empty-state {
  padding: 28px;
}

.panel__head {
  margin-bottom: 18px;
}

.cms-section {
  overflow: hidden;
}

.cms-section__summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  cursor: pointer;
  list-style: none;
}

.cms-section__summary::-webkit-details-marker {
  display: none;
}

.cms-section__hint {
  align-self: center;
  white-space: nowrap;
  font-weight: 800;
  color: var(--accent-strong);
}

.cms-section__body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--image {
  grid-column: 1 / -1;
}

.image-field {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.image-preview {
  min-height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(67, 209, 218, 0.16), rgba(15, 143, 163, 0.1));
  border: 1px solid var(--line);
}

.image-preview img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.image-preview__placeholder {
  display: grid;
  place-items: center;
  min-height: 180px;
  text-align: center;
  padding: 16px;
  color: var(--muted);
  font-weight: 700;
}

.image-field__controls {
  display: grid;
  gap: 12px;
  align-content: start;
}

.field__hint {
  font-size: 0.92rem;
  margin-bottom: 0;
}

.cms-repeater {
  margin-top: 26px;
}

.repeater-list {
  display: grid;
  gap: 16px;
}

.repeater-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(12, 22, 38, 0.025);
}

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

.repeater-card__body {
  display: grid;
  gap: 16px;
}

.leads {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.stats-list {
  margin: 18px 0 28px;
  display: grid;
  gap: 14px;
}

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

.stats-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(67, 209, 218, 0.14), rgba(255, 255, 255, 0.92));
  border: 1px solid rgba(15, 143, 163, 0.16);
}

.stats-card--wide {
  grid-column: 1 / -1;
}

.stats-card__label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

.stats-card__value {
  display: block;
  font-size: clamp(1.55rem, 2vw, 2.2rem);
  font-weight: 800;
  line-height: 1.1;
}

.lead-card__time {
  display: block;
  margin-top: 12px;
}

body.is-modal-open {
  overflow: hidden;
}

.request-modal[hidden] {
  display: none;
}

.request-modal {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 20px;
}

.request-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 30, 34, 0.62);
}

.request-modal__dialog {
  position: relative;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: white;
  box-shadow: 0 30px 80px rgba(12, 22, 38, 0.28);
}

.request-modal__bar {
  height: 68px;
  background: #696766;
}

.request-modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: white;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.request-modal__body {
  padding: 54px 70px 62px;
}

.request-modal__title {
  max-width: 12ch;
  margin: 0 auto 42px;
  text-align: center;
  font-size: clamp(2.4rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
}

.request-modal__form {
  display: grid;
  gap: 28px;
}

.request-modal__input {
  width: 100%;
  min-height: 120px;
  padding: 0 40px;
  border: 2px solid #38d4f2;
  border-radius: 22px;
  background: white;
  color: var(--text);
  font-size: clamp(1.5rem, 2.4vw, 2.3rem);
}

.request-modal__submit {
  min-height: 120px;
  border: 0;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: #111827;
  font-size: clamp(1.5rem, 2vw, 2.5rem);
  font-weight: 900;
  cursor: pointer;
}

.request-modal__status {
  min-height: 24px;
  margin: 0;
  text-align: center;
  font-weight: 700;
  color: var(--accent-strong);
}

.chat-widget {
  position: fixed !important;
  inset: auto !important;
  top: auto !important;
  right: 20px !important;
  bottom: 20px !important;
  left: auto !important;
  z-index: 80;
  display: grid;
  justify-items: end;
  gap: 10px;
}

@supports (bottom: env(safe-area-inset-bottom)) {
  .chat-widget {
    right: calc(20px + env(safe-area-inset-right)) !important;
    bottom: calc(20px + env(safe-area-inset-bottom)) !important;
  }
}

.chat-widget__launcher,
.chat-widget__icon-button {
  border: 0;
  cursor: pointer;
}

.chat-widget__launcher {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #04202b;
  box-shadow: 0 24px 42px rgba(15, 143, 163, 0.3);
  transition:
    transform 0.22s ease,
    opacity 0.22s ease;
}

.chat-widget__launcher-icon {
  font-size: 2rem;
  line-height: 1;
  transform: translateX(2px);
}

.chat-widget__panel {
  position: relative;
  width: min(372px, calc(100vw - 24px));
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 34px 80px rgba(7, 16, 28, 0.2);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.97);
  transition:
    opacity 0.24s ease,
    transform 0.24s ease;
}

.chat-widget.is-open .chat-widget__panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.chat-widget.is-open .chat-widget__launcher {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
}

.chat-widget__panel-head {
  display: none;
}

.chat-widget__icon-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(67, 209, 218, 0.16);
  color: var(--accent-strong);
  font-size: 2rem;
}

.chat-widget__dismiss {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #64748b;
  box-shadow: 0 12px 24px rgba(7, 16, 28, 0.14);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  z-index: 2;
}

.chat-widget__message {
  padding: 18px;
  padding-right: 52px;
  border-radius: 24px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.96), rgba(227, 246, 248, 0.92)),
    white;
  border: 1px solid rgba(67, 209, 218, 0.2);
}

.chat-widget__message h3 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1;
}

.chat-widget__message p {
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.45;
}

.chat-widget__person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.chat-widget__avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(67, 209, 218, 0.22), rgba(15, 143, 163, 0.16));
}

.chat-widget__avatar-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chat-widget__avatar-fallback {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--accent-strong);
}

.chat-widget__person-copy {
  display: grid;
  gap: 4px;
}

.chat-widget__person-copy span {
  color: var(--muted);
}

.chat-widget__quick {
  display: grid;
  gap: 10px;
}

.chat-widget__quick-button,
.chat-widget__footer-button {
  width: 100%;
  border-radius: 22px;
  font-weight: 800;
}

.chat-widget__quick-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: white;
  box-shadow: 0 16px 30px rgba(7, 16, 28, 0.08);
  color: var(--text);
  font-size: 0.96rem;
}

.chat-widget__quick-text {
  text-align: left;
}

.chat-widget__quick-arrow {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent-strong);
}

.chat-widget__footer {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
}

.chat-widget__footer-button {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  text-align: center;
  font-size: 0.96rem;
}

.chat-widget__footer-button--accent {
  border: 0;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #04202b;
  box-shadow: 0 18px 34px rgba(67, 209, 218, 0.24);
}

.chat-widget__footer-button--light {
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
}

@media (max-width: 1080px) {
  .admin__layout {
    grid-template-columns: 1fr;
  }

  .panel--sticky {
    position: static;
  }
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }

  .hero__grid,
  .cta,
  .footer__grid,
  .bonus--panel {
    grid-template-columns: 1fr;
  }

  .hero-card {
    padding: 20px;
  }

  .hero-card__media {
    min-height: 280px;
  }

  .hero-card__panel {
    min-height: auto;
  }

  .hero__content {
    max-width: none;
    padding-top: 0;
    gap: 18px;
  }

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

  .image-field {
    grid-template-columns: 1fr;
  }

  .chat-widget {
    top: auto !important;
    right: 14px !important;
    bottom: 14px !important;
    left: auto !important;
  }

  .chat-widget__launcher {
    right: 14px;
    bottom: 14px;
  }

  .request-modal__body {
    padding: 38px 26px 34px;
  }

  .request-modal__input,
  .request-modal__submit {
    min-height: 88px;
    padding: 0 24px;
  }
}

@media (max-width: 680px) {
  .topbar__inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .topbar__actions {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .button,
  .button--ghost {
    width: 100%;
  }

  .hero__actions,
  .admin-actions,
  .inline-actions,
  .admin-notify__row,
  .cms-repeater__head,
  .repeater-card__head,
  .section-head,
  .admin-meta {
    flex-direction: column;
    align-items: stretch;
  }

  .cms-section__summary {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .section,
  .footer,
  .admin {
    padding-bottom: 56px;
  }

  .request-modal {
    padding: 12px;
  }

  .request-modal__dialog {
    width: calc(100vw - 24px);
  }

  .request-modal__bar {
    height: 54px;
  }

  .request-modal__close {
    top: 10px;
    right: 12px;
  }

  .request-modal__title {
    margin-bottom: 24px;
    max-width: none;
  }

  .request-modal__form {
    gap: 18px;
  }

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

  .chat-widget {
    top: auto !important;
    right: 12px !important;
    bottom: 12px !important;
    left: auto !important;
  }

  .chat-widget__panel {
    width: min(360px, calc(100vw - 24px));
    padding: 12px;
    border-radius: 24px;
  }

  .chat-widget__launcher {
    right: 12px;
    bottom: 12px;
    width: 62px;
    height: 62px;
  }

  .chat-widget__footer {
    grid-template-columns: 1fr;
  }

  .chat-widget__footer-button {
    min-height: 58px;
  }
}
