:root {
  --bg: #f4f1ea;
  --surface: #fbfaf7;
  --surface-strong: #ffffff;
  --ink: #182027;
  --muted: #5c6873;
  --line: #d8d2c6;
  --primary: #1f4a46;
  --primary-strong: #13302d;
  --accent: #b9873b;
  --accent-soft: #e7d2b0;
  --success: #2f6b4f;
  --warning: #8f5f1d;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --shadow-sm: 0 10px 30px rgba(24, 32, 39, 0.08);
  --shadow-md: 0 18px 48px rgba(24, 32, 39, 0.12);
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  background-image:
    linear-gradient(rgba(24, 32, 39, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 32, 39, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}

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

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

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

.page-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(216, 210, 198, 0.8);
}

.nav-row,
.footer-row,
.section-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

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

.brand-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.brand-copy span,
.eyebrow {
  color: var(--muted);
  font-size: 0.9rem;
}

.brand-copy strong {
  display: block;
  font-size: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.96rem;
  padding: 8px 0;
}

.nav-caret {
  width: 10px;
  height: 10px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  padding: 10px;
  display: none;
  z-index: 50;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(31, 74, 70, 0.08);
  color: var(--primary);
}

.nav-dropdown.open .nav-menu {
  display: block;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--primary);
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button,
.button-secondary,
.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  min-height: 46px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.2s ease;
  white-space: nowrap;
}

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

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

.button:disabled,
.button-secondary:disabled,
.button-ghost:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}

.button-secondary {
  background: var(--surface-strong);
  border-color: var(--line);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}

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

.hero {
  padding: 88px 0 64px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(31, 74, 70, 0.08), transparent 55%),
    repeating-linear-gradient(
      120deg,
      rgba(24, 32, 39, 0.045),
      rgba(24, 32, 39, 0.045) 1px,
      transparent 1px,
      transparent 24px
    );
  pointer-events: none;
}

.hero-grid,
.two-column,
.catalog-layout,
.admin-layout {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  align-items: end;
}

.hero-copy h1,
.page-intro h1 {
  margin: 12px 0 16px;
  font-size: clamp(1.9rem, 3.4vw, 3.2rem);
  line-height: 1.08;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}

.hero-copy p,
.page-intro p,
.lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-rail,
.info-panel,
.product-card,
.metric,
.table-wrap,
.form-shell,
.feature-block,
.timeline-item,
.login-shell,
.coming-soon {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.hero-rail {
  padding: 22px;
}

.hero-rail::after,
.info-panel::after,
.feature-block::after,
.metric::after,
.timeline-item::after,
.product-card::after,
.admin-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), rgba(185, 135, 59, 0.15));
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.rail-list,
.stat-list,
.feature-list,
.tile-list {
  display: grid;
  gap: 14px;
}

.rail-item,
.feature-item,
.tile-item {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.rail-item:first-child,
.feature-item:first-child,
.tile-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(216, 210, 198, 0.65);
  border-bottom: 1px solid rgba(216, 210, 198, 0.65);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 28px;
}

.section-head > div:first-child {
  position: relative;
  padding-left: 18px;
}

.section-head > div:first-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.section-head h2,
.two-column h2 {
  margin: 0 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-family: Georgia, "Times New Roman", serif;
}

.section-head p,
.two-column p,
.muted {
  margin: 0;
  color: var(--muted);
}

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

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

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

.metric,
.feature-block,
.timeline-item {
  padding: 22px;
  overflow: hidden;
}

.metric strong,
.value {
  display: block;
  font-size: 1.9rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 8px;
}

.two-column {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: start;
}

.info-panel {
  padding: 22px;
}

.info-panel h3,
.feature-block h3,
.product-card h3,
.form-shell h3,
.coming-soon h3,
.login-shell h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.blog-card {
  display: grid;
  gap: 12px;
}

.blog-card-media,
.article-cover {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(24, 32, 39, 0.08);
  background: #efe8dc;
}

.blog-card-media img,
.article-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card-media {
  aspect-ratio: 16 / 10;
}

.article-shell {
  width: min(100%, 860px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.article-intro {
  max-width: 100%;
}

.article-cover {
  max-height: 480px;
}

.article-body {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  font-size: 1.02rem;
  line-height: 1.8;
}

.article-related {
  border-radius: var(--radius-lg);
  padding: 32px;
}

.icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(31, 74, 70, 0.12), rgba(185, 135, 59, 0.16));
  border: 1px solid rgba(31, 74, 70, 0.12);
  color: var(--primary);
  flex: 0 0 auto;
}

.icon-badge svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature-list strong,
.tile-list strong {
  display: block;
  margin-bottom: 4px;
}

.catalog-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.catalog-sidebar,
.catalog-main,
.admin-sidebar,
.admin-main {
  min-width: 0;
}

.sticky-panel {
  position: sticky;
  top: 92px;
  padding: 22px;
}

.catalog-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.catalog-toolbar input,
.catalog-toolbar select,
.catalog-sidebar input,
.catalog-sidebar select,
.form-grid input,
.form-grid select,
.form-grid textarea,
.login-shell input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--ink);
}

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

.product-card {
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.product-card:hover,
.feature-block:hover,
.metric:hover,
.timeline-item:hover,
.admin-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(31, 74, 70, 0.24);
}

.product-media {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #d7e1dc, #f1ece2);
  display: grid;
  place-items: end start;
  padding: 18px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(24, 32, 39, 0.02), rgba(24, 32, 39, 0.16)),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.18),
      rgba(255, 255, 255, 0.18) 2px,
      transparent 2px,
      transparent 16px
    );
}

.product-media > * {
  position: relative;
  z-index: 1;
}

.image-watermark {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 28px;
  height: 28px;
  padding: 4px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(6px);
  object-fit: contain;
  opacity: 0.88;
  filter: drop-shadow(0 4px 12px rgba(24, 32, 39, 0.28));
  pointer-events: none;
  z-index: 2;
}

.media-stack {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 12px;
}

.media-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 32, 39, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.media-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(24, 32, 39, 0.12);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--muted);
  font-size: 0.85rem;
}

.highlight-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.highlight-chip {
  border: 1px solid rgba(24, 32, 39, 0.08);
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius-md);
  padding: 14px;
}

.highlight-chip strong {
  display: block;
  margin-bottom: 4px;
}

.product-body {
  padding: 18px;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  background: var(--accent-soft);
  color: #6d4d19;
  padding: 4px 10px;
  font-size: 0.83rem;
}

.quote-summary {
  display: grid;
  gap: 12px;
}

.quote-item,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.quote-item {
  width: 100%;
  justify-content: space-between;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.quote-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.status-pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  background: #e7efe7;
  color: var(--success);
}

.status-pill.in-progress {
  background: #f3ead5;
  color: var(--warning);
}

.status-pill.responded,
.status-pill.closed {
  background: #e4ebf6;
  color: #345d94;
}

.form-shell {
  padding: 24px;
}

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

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

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

.notice {
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: #eef5ef;
  color: var(--success);
}

.notice.notice-error {
  background: #f7e8e8;
  color: #8b2f2f;
}

.quote-verify-box {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  display: grid;
  gap: 12px;
}

.quote-verify-actions {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.quote-verify-actions input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
}

.quote-verify-status {
  font-size: 0.95rem;
  color: var(--muted);
}

.quote-verify-status.verified {
  color: var(--success);
  font-weight: 600;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: #e7efe7;
  color: var(--success);
  font-size: 0.8rem;
}

.table-wrap {
  overflow: auto;
}

.stack {
  display: grid;
  gap: 18px;
}

.admin-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px;
}

.admin-card h3 {
  margin: 0 0 12px;
}

.compact-item strong {
  font-size: 1rem;
}

.split-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.preview-box {
  border: 1px dashed var(--line);
  border-radius: var(--radius-md);
  min-height: 160px;
  display: grid;
  place-items: center;
  background: #faf8f3;
  overflow: hidden;
}

.preview-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.compact-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
}

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

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

th {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.92rem;
}

.admin-layout {
  grid-template-columns: 280px minmax(0, 1fr);
}

.admin-sidebar .sticky-panel,
.catalog-sidebar .sticky-panel {
  background: var(--surface-strong);
}

.kpi-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 18px;
}

.login-shell,
.coming-soon {
  width: min(calc(100% - 32px), 620px);
  margin: 48px auto;
  padding: 26px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #f7f4ee;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-block {
  display: grid;
  gap: 8px;
  min-width: 180px;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 700;
}

.social-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  transition: 0.2s ease;
}

.social-link:hover {
  border-color: var(--primary);
  color: var(--primary-strong);
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links.column {
  flex-direction: column;
  gap: 10px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  background: #1f7a4f;
  color: #fff;
  border-radius: 999px;
  padding: 13px 16px;
  box-shadow: var(--shadow-md);
}

.dialog-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24, 32, 39, 0.62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 60;
}

.dialog-backdrop.open {
  display: flex;
}

.dialog {
  width: min(760px, 100%);
  max-height: min(88vh, 920px);
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.dialog header,
.dialog footer {
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.dialog footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.dialog-content {
  padding: 22px;
  display: grid;
  gap: 12px;
  overflow-y: auto;
  min-height: 0;
}

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

.gallery-tile {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: hidden;
  background: #f5f1e8;
  position: relative;
  cursor: zoom-in;
  padding: 0;
  appearance: none;
}

.gallery-tile > img:not(.image-watermark) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-tile::after {
  content: "Zoom";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(24, 32, 39, 0.72);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
}

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

.preview-tile {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #fff;
}

.preview-cover {
  aspect-ratio: 16 / 10;
}

.preview-tile > img:not(.image-watermark) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.preview-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.6);
  background: rgba(24, 32, 39, 0.72);
  color: #fff;
  cursor: pointer;
}

.zoom-backdrop {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(14, 18, 24, 0.9);
  z-index: 80;
}

.zoom-backdrop.open {
  display: flex;
}

.zoom-panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
  justify-items: center;
}

.zoom-panel img {
  max-width: 100%;
  max-height: calc(92vh - 56px);
  object-fit: contain;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
}

.zoom-close {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 42px;
  min-height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  cursor: pointer;
}

.zoom-caption {
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1040px) {
  .hero-grid,
  .two-column,
  .catalog-layout,
  .admin-layout {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .grid.three,
  .grid.four,
  .kpi-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticky-panel {
    position: static;
  }
}

@media (max-width: 720px) {
  .nav-row,
  .section-inner,
  .hero-grid,
  .two-column,
  .catalog-layout,
  .admin-layout,
  .footer-row {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .hero {
    padding-top: 68px;
  }

  .product-grid,
  .grid.three,
  .grid.four,
  .kpi-row,
  .gallery-grid,
  .preview-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-menu {
    left: auto;
    right: 0;
    min-width: 220px;
  }

  .dialog-backdrop {
    padding: 12px;
  }

  .dialog {
    max-height: 92vh;
  }
}
