:root {
  --bg: #f4f5fa;
  --surface: #ffffff;
  --surface-alt: #e8eaf4;
  --text: #191c2b;
  --text-muted: #515674;
  --border: rgba(25, 28, 43, 0.12);
  --accent: #3a4485;
  --accent-2: #b08a3e;
  --secondary: #262c4d;
  --on-accent: #ffffff;
  --dark: #151830;
  --radius: 2px;
  --font-heading: Baskerville, "Baskerville Old Face", Georgia, serif;
  --font-body: "Segoe UI", Arial, sans-serif;
  --max-w: 1140px;
  --section-pad: 96px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--secondary);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: var(--text);
}

h1 {
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1.12;
}

h2 {
  font-size: clamp(26px, 4vw, 40px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 26px);
}

.kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-pad) 0;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  padding: 12px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  text-decoration: none;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: var(--on-accent);
}

.btn--ghost {
  background: transparent;
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--link {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.btn--link:hover {
  color: var(--secondary);
  background: none;
}

.btn--link::after {
  content: " →";
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
  padding: 10px 24px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

.nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.nav__brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.nav__links {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 18px;
  list-style: none;
}

.nav__links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
}

.nav__links a:hover,
.nav__links a[aria-current="page"] {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

.nav__contact {
  justify-self: end;
}

.nav__contact a {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding: 4px 0;
}

.nav__contact a:hover,
.nav__contact a[aria-current="page"] {
  border-bottom-color: var(--accent);
}

.nav-write-mobile {
  display: none;
}

.nav__toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.independence-notice {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  padding: 10px 24px;
}

.independence-notice p {
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-muted);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  min-height: 560px;
  background: var(--bg);
}

.hero__media {
  grid-column: 2 / -1;
  grid-row: 1;
  min-height: 560px;
}

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

.hero__panel {
  grid-column: 1 / 2;
  grid-row: 1;
  align-self: center;
  margin-left: max(24px, calc((100vw - var(--max-w)) / 2));
  margin-right: -80px;
  position: relative;
  z-index: 2;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  max-width: 520px;
}

.hero__panel p {
  margin-top: 18px;
  color: var(--text-muted);
  font-size: 17px;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.category-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 480px;
}

.category-card__img {
  flex: 1;
  min-height: 320px;
}

.category-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  border-radius: var(--radius) var(--radius) 0 0;
}

.category-card__body {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  margin-top: -72px;
  position: relative;
  z-index: 1;
  padding: 28px 24px 32px;
  margin-left: 16px;
  margin-right: 16px;
  margin-bottom: 16px;
  border-radius: var(--radius);
}

.category-card__body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin-bottom: 10px;
}

.category-card__body p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 18px;
}

.category-card__body a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.category-card__body a:hover {
  color: var(--secondary);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.split__text h2 {
  margin-bottom: 20px;
}

.split__text p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.photo-strip figure {
  margin: 0;
}

.photo-strip img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.photo-strip figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

.mission {
  max-width: 68ch;
  margin: 0 auto;
  text-align: left;
}

.mission::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-2);
  margin-bottom: 28px;
}

.mission h2 {
  margin-bottom: 20px;
}

.mission p {
  color: var(--text-muted);
  margin-bottom: 16px;
}

.page-title {
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.page-title p {
  max-width: 62ch;
  margin-top: 16px;
  color: var(--text-muted);
}

.band-list {
  display: flex;
  flex-direction: column;
}

.band {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.band:last-of-type {
  border-bottom: none;
}

.band__photo {
  position: relative;
  margin-bottom: 28px;
}

.band__photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}

.band__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 24, 48, 0.72);
  padding: 18px 24px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.band__overlay h2 {
  color: var(--on-accent);
  font-size: clamp(22px, 3vw, 32px);
  margin: 0;
}

.band__body {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.band__meta {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.band__body p {
  color: var(--text-muted);
  margin-bottom: 22px;
}

.row-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.row-card {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 40px;
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
}

.row-card:nth-child(even) {
  direction: rtl;
}

.row-card:nth-child(even) > * {
  direction: ltr;
}

.row-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
}

.row-card__kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 8px;
}

.row-card h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}

.row-card__loc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.row-card p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  padding: 64px 0;
}

.flagship-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.flagship-card:hover {
  border-color: rgba(58, 68, 133, 0.35);
}

.flagship-card__photo {
  position: relative;
}

.flagship-card__photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.flagship-card__overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(21, 24, 48, 0.72);
  padding: 16px 20px;
}

.flagship-card__overlay h2 {
  color: var(--on-accent);
  font-size: clamp(20px, 2.5vw, 26px);
  margin: 0;
}

.flagship-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.flagship-card__loc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.flagship-card__body p {
  color: var(--text-muted);
  margin-bottom: 22px;
  flex: 1;
}

.picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 64px 0;
}

.pick-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 200ms ease;
}

.pick-card:hover {
  border-color: rgba(58, 68, 133, 0.35);
}

.pick-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.pick-card__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pick-card h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.pick-card__rule {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin-bottom: 14px;
  border: none;
}

.pick-card__loc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pick-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
  flex: 1;
}

.catalog-close {
  padding: 48px 0 96px;
  border-top: 1px solid var(--border);
}

.catalog-close p {
  max-width: 62ch;
  color: var(--text-muted);
}

.lead-large {
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.55;
  color: var(--text);
  max-width: 70ch;
  margin-bottom: 56px;
  font-family: var(--font-heading);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  padding-bottom: 96px;
}

.editorial-grid section h2 {
  margin-bottom: 18px;
  font-size: clamp(22px, 2.5vw, 28px);
}

.editorial-grid section p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.guide-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 56px;
  padding: 64px 0 96px;
  align-items: start;
}

.guide-index {
  position: sticky;
  top: calc(var(--header-h) + 48px);
  list-style: none;
  border-left: 1px solid var(--border);
  padding-left: 18px;
}

.guide-index a {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 0;
  line-height: 1.4;
}

.guide-index a:hover {
  color: var(--accent);
}

.guide-content section {
  margin-bottom: 56px;
  scroll-margin-top: calc(var(--header-h) + 32px);
}

.guide-content section h2 {
  margin-bottom: 18px;
}

.guide-content section p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.contact-wrap {
  max-width: 640px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.contact-wrap > p {
  color: var(--text-muted);
  margin: 16px 0 12px;
}

.contact-email {
  margin-bottom: 36px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--text);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
  width: auto;
}

.form-agree label {
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.5;
}

.form-error {
  color: #8b2e2e;
  font-size: 13px;
  margin-bottom: 16px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

.form-status {
  margin-top: 12px;
  font-size: 14px;
  color: #8b2e2e;
}

.confirm-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
}

.confirm-panel h2 {
  margin-bottom: 14px;
  font-size: 28px;
}

.confirm-panel p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal-body h1 {
  margin-bottom: 8px;
}

.legal-body > p:first-of-type {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.legal-body h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  margin: 36px 0 14px;
}

.legal-body h3 {
  font-size: 18px;
  margin: 24px 0 10px;
}

.legal-body p {
  color: var(--text-muted);
  margin-bottom: 14px;
}

.sitemap-list {
  list-style: none;
  padding: 48px 0 96px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap-list li {
  display: grid;
  grid-template-columns: minmax(180px, 280px) 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}

.sitemap-list a {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent);
}

.sitemap-list a:hover {
  color: var(--secondary);
}

.sitemap-list span {
  color: var(--text-muted);
  font-size: 15px;
}

.site-footer {
  background: var(--dark);
  color: #c8cad8;
  padding: 64px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 48px;
}

.footer-brand__lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-brand__lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: #a8abc0;
  max-width: 42ch;
  margin-bottom: 14px;
}

.footer-brand a[href^="mailto"] {
  color: #d4d6e4;
  font-size: 14px;
}

.footer-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-group h3 {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.footer-group ul {
  list-style: none;
}

.footer-group li {
  margin-bottom: 8px;
}

.footer-group a {
  color: #c8cad8;
  text-decoration: none;
  font-size: 14px;
}

.footer-group a:hover {
  color: var(--on-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 24px 28px;
}

.footer-bottom__notice {
  font-size: 12px;
  color: #8b8ea3;
  margin-bottom: 16px;
  line-height: 1.5;
}

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

.footer-bottom__bar p {
  font-size: 13px;
  color: #8b8ea3;
}

.footer-bottom__bar button {
  background: none;
  border: none;
  color: #c8cad8;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding: 0;
}

.footer-bottom__bar button:hover {
  color: var(--on-accent);
}

.reveal {
  opacity: 0;
  transition: opacity 240ms ease;
}

.reveal.is-visible {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transition: none;
  }
}

.consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  width: calc(100% - 40px);
  max-width: 380px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  color: var(--text);
}

.consent[hidden] {
  display: none !important;
}

.consent__title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}

.consent__text {
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.consent__text a {
  color: var(--accent);
}

.consent__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 18px;
}

.consent__btn {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--on-accent);
  cursor: pointer;
}

.consent__btn:hover {
  background: var(--secondary);
  border-color: var(--secondary);
}

.consent__link {
  font-family: var(--font-body);
  font-size: 14px;
  background: none;
  border: none;
  padding: 0;
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.consent__link:hover {
  color: var(--secondary);
}

.consent__cats {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 16px 0;
}

.consent__cat {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.consent__cat input {
  margin-top: 3px;
}

.consent__cat input:disabled {
  opacity: 0.7;
}

.consent__policy {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__panel {
    margin-left: 24px;
    margin-right: -40px;
    padding: 36px 28px;
  }

  .flagship-grid {
    gap: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .nav {
    grid-template-columns: auto 1fr auto;
  }

  .nav__toggle {
    display: flex;
    justify-self: end;
    grid-column: 3;
  }

  .nav__contact {
    display: none;
  }

  .nav-write-mobile {
    display: list-item;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px 20px;
    gap: 0;
    z-index: 110;
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    border-bottom: 1px solid var(--border);
  }

  .nav__links a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
  }

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

  .hero__media {
    grid-column: 1;
    grid-row: 1;
    min-height: 280px;
  }

  .hero__media img {
    min-height: 280px;
    height: 320px;
  }

  .hero__panel {
    grid-column: 1;
    grid-row: 2;
    margin: -40px 16px 0;
    max-width: none;
  }

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

  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .split img {
    height: 300px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .guide-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .guide-index {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 20px;
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
  }

  .picks-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-groups {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .photo-strip {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }

  .photo-strip figure {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }

  .photo-strip img {
    height: 220px;
  }

  .row-card,
  .row-card:nth-child(even) {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 24px;
  }

  .row-card img {
    height: 240px;
  }

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

  .band__photo img {
    height: 280px;
  }

  .sitemap-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

@media (max-width: 640px) {
  .consent {
    right: 0;
    bottom: 0;
    left: 0;
    max-width: none;
    width: 100%;
    border-radius: 12px 12px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
  }
}

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

@media (max-width: 480px) {
  .container,
  .nav,
  .independence-notice,
  .footer-main,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero__panel {
    margin: -32px 12px 0;
    padding: 28px 20px;
  }

  .category-card__body {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-groups {
    grid-template-columns: 1fr;
  }

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