/* ==========================================================================
   povlecenimikroplys.cz — mobile first
   1. Design tokens
   2. Reset & základ
   3. Layout & typografie
   4. Hlavička a navigace
   5. Hero, USP
   6. Sekce, karty, mřížka
   7. Filtry
   8. Obsahové stránky
   9. Patička
   10. Desktop breakpointy
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */

:root {
  --bg: #fbf7f2;
  --bg-alt: #f4ece2;
  --surface: #ffffff;
  --ink: #241c17;
  --ink-soft: #5f5148;
  --muted: #756559;
  --line: #e7dbcd;
  --line-soft: #f0e7db;

  --accent: #b8562f;
  --accent-text: #ad4b24;
  --accent-ink: #ffffff;
  --accent-hover: #9c4525;
  --accent-soft: #fbeade;

  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgb(56 36 22 / 0.05), 0 8px 24px -12px rgb(56 36 22 / 0.18);
  --shadow-lg: 0 2px 4px rgb(56 36 22 / 0.06), 0 24px 48px -24px rgb(56 36 22 / 0.28);

  --wrap: 1180px;
  --gap: 1rem;
  --pad: 1.125rem;

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia,
    "Times New Roman", serif;

  color-scheme: light dark;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #17110d;
    --bg-alt: #1f1712;
    --surface: #241b15;
    --ink: #f4ece4;
    --ink-soft: #c9bab0;
    --muted: #9d8d81;
    --line: #37291f;
    --line-soft: #2c2018;

    --accent: #e07a4f;
    --accent-text: #e07a4f;
    --accent-ink: #24150e;
    --accent-hover: #ef8d61;
    --accent-soft: #33211a;

    --shadow: 0 1px 2px rgb(0 0 0 / 0.4), 0 8px 24px -12px rgb(0 0 0 / 0.6);
    --shadow-lg: 0 2px 4px rgb(0 0 0 / 0.4), 0 24px 48px -24px rgb(0 0 0 / 0.7);
  }
}

/* 2. Reset & základ ------------------------------------------------------ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration-color: color-mix(in srgb, currentColor 35%, transparent);
  text-underline-offset: 2px;
}

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

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 650;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

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

.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 0.75rem 1.25rem;
  border-radius: 0 0 var(--radius) 0;
}

.skip:focus {
  left: 0;
}

/* 3. Layout & typografie ------------------------------------------------- */

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.section {
  padding-block: 3rem;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.75rem;
}

.section-head h2 {
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-family: var(--font-display);
  font-weight: 600;
}

.section-sub {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 52ch;
}

.link-more {
  color: var(--accent-text);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  white-space: nowrap;
}

.link-more:hover {
  text-decoration: underline;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-text);
}

/* Tlačítka */

.btn {
  --btn-bg: var(--accent);
  --btn-ink: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: var(--btn-bg);
  color: var(--btn-ink);
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.75rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease;
}

.btn:hover {
  --btn-bg: var(--accent-hover);
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  --btn-bg: transparent;
  --btn-ink: var(--ink);
  border-color: var(--line);
}

.btn--ghost:hover {
  --btn-bg: var(--accent-soft);
  --btn-ink: var(--ink);
  border-color: var(--accent);
}

.btn--sm {
  padding: 0.5rem 0.95rem;
  font-size: 0.85rem;
}

/* 4. Hlavička a navigace ------------------------------------------------- */

.site-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.head-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  flex: none;
  background: radial-gradient(circle at 32% 30%, #f6c8a8, var(--accent) 70%);
  box-shadow: inset 0 0 0 3px color-mix(in srgb, var(--bg) 70%, transparent);
}

.brand-text {
  font-weight: 400;
  color: var(--ink-soft);
}

.brand-text strong {
  font-weight: 700;
  color: var(--ink);
}

.nav-toggle {
  display: grid;
  place-content: center;
  gap: 5px;
  width: 2.75rem;
  height: 2.75rem;
  margin-right: -0.5rem;
  background: none;
  border: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  position: absolute;
  inset: 100% 0 auto;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s ease;
}

.nav ul {
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav.is-open {
  grid-template-rows: 1fr;
}

.nav a {
  display: block;
  padding: 0.9rem var(--pad);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--line-soft);
}

.nav a[aria-current="page"] {
  color: var(--accent-text);
  font-weight: 650;
}

/* 5. Hero, USP ----------------------------------------------------------- */

.hero {
  position: relative;
  padding-block: 2.5rem 3rem;
  background:
    radial-gradient(70% 60% at 85% 0%, var(--accent-soft), transparent 70%),
    var(--bg);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  gap: 2rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 8vw, 3.4rem);
  margin-block: 0.6rem 0.85rem;
}

.lead {
  color: var(--ink-soft);
  font-size: clamp(1rem, 3.2vw, 1.12rem);
  max-width: 46ch;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  list-style: none;
  margin: 2rem 0 0;
  padding: 1.25rem 0 0;
  border-top: 1px solid var(--line);
}

.hero-facts strong {
  display: block;
  font-size: 1.3rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero-facts span {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
  order: -1;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-tag {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  background: color-mix(in srgb, var(--surface) 92%, transparent);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: var(--shadow);
}

.usp {
  padding-block: 2.5rem;
  background: var(--bg-alt);
}

.usp-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.usp-item h2 {
  font-size: 1.05rem;
  margin-block: 0.5rem 0.3rem;
}

.usp-item p {
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.usp-ico {
  font-size: 1.5rem;
  display: grid;
  place-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: var(--shadow);
}

/* 6. Karty a mřížka ------------------------------------------------------ */

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--line));
}

.card[hidden] {
  display: none;
}

.card-media {
  position: relative;
  display: block;
  background: var(--bg-alt);
}

.card-media img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.card-badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  max-width: calc(100% - 1rem);
}

.badge {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
}

.badge--alt {
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(6px);
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.55rem;
  padding: 0.8rem 0.85rem 0.9rem;
}

.card-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.card-title a {
  text-decoration: none;
}

.card-title a:hover {
  color: var(--accent-text);
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: -0.15rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--bg-alt);
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  white-space: nowrap;
}

.chip--ghost {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 500;
}

.chip--color i {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--sw);
  border: 1px solid rgb(0 0 0 / 0.18);
}

.card-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.2rem;
}

.price {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.card-foot .btn {
  font-size: 0.75rem;
  padding: 0.4rem 0.8rem;
}

/* 7. Filtry -------------------------------------------------------------- */

.page-head {
  padding-block: 2rem 1.5rem;
  background: linear-gradient(var(--bg-alt), var(--bg));
}

.crumbs {
  display: flex;
  gap: 0.45rem;
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.crumbs a {
  text-decoration: none;
}

.crumbs a:hover {
  color: var(--accent-text);
}

.page-head h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 6.5vw, 2.8rem);
}

.page-intro {
  margin-top: 0.75rem;
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 0.97rem;
}

.filters {
  position: sticky;
  top: 3.75rem;
  z-index: 30;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  border-block: 1px solid var(--line);
  padding-block: 0.7rem;
}

.filter-top {
  display: flex;
  gap: 0.5rem;
}

.search {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
}

.search svg {
  position: absolute;
  left: 0.7rem;
  width: 1.05rem;
  height: 1.05rem;
  fill: none;
  stroke: var(--muted);
  stroke-width: 2;
  stroke-linecap: round;
  pointer-events: none;
}

.search input {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.9rem 0.6rem 2.3rem;
  font-size: 0.9rem;
}

.search input::placeholder {
  color: var(--muted);
}

.sort select {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 0.75rem;
  font-size: 0.85rem;
  max-width: 10.5rem;
}

.filter-rows {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.45rem;
}

.filter-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.filter-label {
  flex: none;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  width: 3.9rem;
}

.pills {
  display: flex;
  gap: 0.35rem;
  overflow-x: auto;
  scrollbar-width: none;
  padding-block: 0.15rem;
  -webkit-overflow-scrolling: touch;
}

.pills::-webkit-scrollbar {
  display: none;
}

.pill {
  flex: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  font-weight: 550;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.pill:hover {
  border-color: var(--accent);
}

.pill.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--accent-ink);
}

.swatch {
  flex: none;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 2px solid var(--line);
  background: var(--sw);
  cursor: pointer;
  padding: 0;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.swatch:hover {
  transform: scale(1.12);
}

.swatch.is-active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

.swatch--all {
  width: auto;
  padding: 0 0.7rem;
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.8rem;
  font-weight: 550;
}

.swatch--all.is-active {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: none;
}

.filter-status {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.55rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.reset {
  background: none;
  border: 0;
  color: var(--accent-text);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.section--catalog {
  padding-top: 1.5rem;
}

.empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1rem;
  max-width: 40ch;
  margin-inline: auto;
}

/* 8. Obsahové stránky ---------------------------------------------------- */

.prose {
  max-width: 68ch;
}

.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.35rem, 4.5vw, 1.75rem);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p {
  margin-bottom: 1rem;
  color: var(--ink-soft);
}

/* Jen textové odkazy — tlačítkům nesmíme přepsat vlastní barvu písma. */
.prose a:not(.btn) {
  color: var(--accent-text);
  font-weight: 550;
}

.prose > .btn {
  margin-top: 0.5rem;
}

.checklist {
  list-style: none;
  padding: 0;
  margin-bottom: 1.25rem;
  display: grid;
  gap: 0.55rem;
}

.checklist li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
}

.table-scroll {
  overflow-x: auto;
  margin-bottom: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 30rem;
}

th,
td {
  text-align: left;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line-soft);
}

th {
  background: var(--bg-alt);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: 0.6rem;
  overflow: hidden;
}

.faq summary {
  padding: 0.9rem 1rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--accent-text);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  flex: none;
}

.faq[open] summary::after {
  content: "−";
}

.faq p {
  padding: 0 1rem 1rem;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.cta-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 1px solid color-mix(in srgb, var(--accent) 25%, transparent);
}

.cta-box h2 {
  margin-top: 0;
}

.cta-box .hero-cta {
  margin-top: 1rem;
}

/* 9. Patička ------------------------------------------------------------- */

.site-foot {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
  margin-top: 1rem;
}

.foot-grid {
  display: grid;
  gap: 1.75rem;
  padding-bottom: 2rem;
}

.brand--foot {
  margin-bottom: 0.75rem;
}

.foot-note {
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 40ch;
}

.site-foot h3 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 0.7rem;
}

.foot-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  font-size: 0.92rem;
}

.foot-links a {
  text-decoration: none;
  color: var(--ink-soft);
}

.foot-links a:hover {
  color: var(--accent-text);
}

.disclosure {
  border-top: 1px solid var(--line);
  padding-block: 1.25rem 2rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.55;
}

.disclosure p {
  max-width: 80ch;
}

.copy {
  margin-top: 0.75rem;
  font-size: 0.78rem;
}

/* 10. Desktop breakpointy ------------------------------------------------ */

@media (min-width: 480px) {
  .grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  }
  .card-title {
    font-size: 0.95rem;
  }
}

@media (min-width: 700px) {
  :root {
    --pad: 1.75rem;
  }
  .section {
    padding-block: 4rem;
  }
  .grid {
    gap: 1.35rem;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .section-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .foot-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
  }
  .filter-top {
    max-width: 34rem;
  }
  .hero-facts strong {
    font-size: 1.5rem;
  }
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
  .nav {
    position: static;
    background: none;
    border: 0;
    box-shadow: none;
    grid-template-rows: 1fr;
  }
  .nav ul {
    display: flex;
    gap: 0.35rem;
  }
  .nav a {
    padding: 0.45rem 0.85rem;
    border: 0;
    border-radius: 999px;
    font-size: 0.93rem;
  }
  .nav a:hover {
    background: var(--accent-soft);
    color: var(--accent-text);
  }
  .nav a[aria-current="page"] {
    background: var(--accent-soft);
  }

  .hero {
    padding-block: 4rem 5rem;
  }
  .hero-inner {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3.5rem;
  }
  .hero-media {
    order: 0;
  }
  .hero-media img {
    aspect-ratio: 1;
  }
  .hero-tag {
    left: auto;
    right: -0.75rem;
    bottom: 1.5rem;
  }

  .page-head {
    padding-block: 3rem 2rem;
  }
  .filter-rows {
    gap: 0.6rem;
  }
}

@media (min-width: 1100px) {
  .grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
