/* Compact Barba DV landing page */
:root {
  --page: #f5efe7;
  --paper: #fffdf9;
  --paper-warm: #fbf5ee;
  --ink: #251f1b;
  --muted: #70675f;
  --line: #d9cfc4;
  --line-strong: #bdae9f;
  --accent: #8c2634;
  --accent-dark: #6f1c28;
  --accent-soft: #f4e5e6;
  --radius-panel: 28px;
  --radius-card: 18px;
  --shadow: 0 24px 70px rgba(59, 42, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(140, 38, 52, 0.08), transparent 30rem),
    var(--page);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

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

.shell {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  padding: 18px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.brand-logo {
  width: 42px;
  height: 42px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-contact {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.header-contact:hover {
  border-color: var(--accent);
  background: var(--paper);
}

.hero {
  padding: 18px 0 28px;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(30px, 3.5vw, 44px);
  align-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(251, 245, 238, 0.94)),
    var(--paper);
  box-shadow: var(--shadow);
}

.hero-copy,
.brands-panel {
  min-width: 0;
}

.kicker {
  margin: 0;
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 13ch;
  margin-top: 18px;
  overflow-wrap: normal;
  font-size: clamp(42px, 4.4vw, 60px);
  line-height: 0.98;
  text-wrap: balance;
}

h2 {
  margin-top: 10px;
  font-size: clamp(28px, 3.3vw, 42px);
  line-height: 1.08;
}

.intro {
  max-width: 62ch;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

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

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.choice-card {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 184px;
  padding: 22px 48px 22px 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--paper);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.choice-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(70, 45, 30, 0.09);
}

.choice-wholesale {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent);
}

.choice-wholesale:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

.choice-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  opacity: 0.72;
  text-transform: uppercase;
}

.choice-card strong {
  margin-top: 12px;
  font-size: 18px;
  line-height: 1.25;
}

.choice-note {
  margin-top: auto;
  padding-top: 18px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.choice-wholesale .choice-note {
  color: rgba(255, 255, 255, 0.75);
}

.choice-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  line-height: 1;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.facts li {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.facts strong {
  font-size: 13px;
}

.facts span {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.45;
}

.brands-panel {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.64);
}

.brands-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.brands-heading span {
  color: var(--muted);
  font-size: 11px;
}

.brands-heading strong {
  text-align: right;
  font-size: 12px;
}

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

.brand-tile {
  min-height: 96px;
  min-width: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.brand-logo-box {
  width: 100%;
  height: 74px;
  min-width: 0;
  display: grid;
  place-items: center;
}

.brand-logo-box img {
  width: auto;
  height: auto;
  max-width: 88%;
  max-height: 72%;
  object-fit: contain;
  object-position: center;
}

.brand-tile-text {
  color: #2e5d86;
  font-size: clamp(15px, 1.8vw, 21px);
  font-weight: 800;
  letter-spacing: 0.09em;
}

.assortment-section {
  padding: 0 0 28px;
}

.assortment-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1.45fr);
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 40px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--paper);
}

.assortment-panel h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.assortment-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assortment-chips li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper-warm);
  font-size: 12px;
  font-weight: 700;
}

.contacts-section {
  padding: 28px 0 34px;
}

.contacts-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--paper);
}

.contacts-panel p:not(.kicker) {
  max-width: 54ch;
  margin: 14px 0 0;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 230px;
}

.button {
  min-height: 48px;
  padding: 13px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 14px;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

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

.button-primary:hover {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
}

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

.button-secondary:hover {
  border-color: var(--accent);
  background: var(--paper-warm);
}

.site-footer {
  padding: 22px 0 30px;
  color: var(--muted);
  font-size: 11px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-row a {
  color: var(--ink);
}

.legal-details {
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.legal-details summary {
  width: fit-content;
  padding: 16px 0 4px;
  color: var(--ink);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  padding: 18px 0 4px;
}

.legal-grid strong {
  color: var(--ink);
  font-size: 12px;
}

.legal-grid p {
  margin: 8px 0 0;
  line-height: 1.6;
}

.legal-grid dl {
  margin: 10px 0 0;
}

.legal-grid dl div {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 10px;
}

.legal-grid dt,
.legal-grid dd {
  margin: 0;
}

.legal-grid dd {
  color: var(--ink);
  font-weight: 600;
}

.legal-note {
  max-width: 92ch;
  margin: 16px 0 0;
  line-height: 1.65;
}

.legal-note a,
.legal-grid a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page {
  padding: 18px 0 40px;
}

.legal-page-panel {
  padding: clamp(30px, 5vw, 62px);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-page-panel > h1 {
  max-width: 16ch;
}

.legal-updated {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.legal-page-panel section {
  max-width: 78ch;
  margin-top: 34px;
}

.legal-page-panel section h2 {
  margin: 0;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.legal-page-panel section p {
  margin: 12px 0 0;
  color: var(--muted);
}

.legal-page-panel section a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-back {
  width: fit-content;
  margin-top: 36px;
}

@media (max-width: 920px) {
  .hero-panel {
    grid-template-columns: 1fr;
  }

  .brands-panel {
    max-width: none;
  }

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

  .assortment-panel {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}

@media (max-width: 680px) {
  .shell {
    width: calc(100% - 28px);
  }

  .site-header {
    padding: 12px 0;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding-top: 8px;
  }

  .hero-panel {
    gap: 28px;
    width: 100%;
    padding: 26px 18px;
    border-radius: 22px;
  }

  h1 {
    width: 100%;
    max-width: none;
    overflow-wrap: normal;
    font-size: clamp(31px, 9vw, 38px);
    letter-spacing: -0.055em;
    line-height: 1.02;
  }

  .kicker,
  .intro,
  .choice-card,
  .choice-card strong,
  .choice-note,
  .brands-heading,
  .contacts-panel {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .choice-grid,
  .facts,
  .contacts-panel,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .choice-card {
    min-height: 154px;
  }

  .facts {
    gap: 14px;
  }

  .facts li {
    padding-left: 12px;
    border-left: 2px solid var(--accent);
  }

  .brands-panel {
    padding: 16px;
  }

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

  .contacts-section {
    padding-top: 18px;
  }

  .assortment-section {
    padding-bottom: 18px;
  }

  .assortment-panel,
  .legal-page-panel {
    padding: 26px 20px;
    border-radius: 22px;
  }

  .contacts-panel {
    gap: 24px;
    padding: 26px 20px;
    border-radius: 22px;
  }

  .contact-actions {
    min-width: 0;
  }

  .footer-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }
}

@media (max-width: 420px) {
  .header-contact {
    padding-inline: 13px;
  }

  .brand {
    gap: 9px;
    font-size: 13px;
  }

  .brands-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .brands-heading strong {
    text-align: left;
  }
}

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

  .choice-card,
  .button,
  .header-contact {
    transition: none;
  }
}
