:root {
  --turquoise: #40e0d0;
  --turquoise-dark: #00796b;
  --turquoise-deep: #005e58;
  --turquoise-mist: #ddfbf8;
  --gold: #d4af37;
  --gold-dark: #8a6500;
  --gold-mist: #fff3cf;
  --burgundy: #7a1232;
  --burgundy-dark: #4a071d;
  --burgundy-mist: #fbeaf0;
  --ink: #081211;
  --ink-soft: #14201f;
  --noir: #050707;
  --ivory: #fbf7ef;
  --paper: #fffdf8;
  --muted: #70685f;
  --white: #ffffff;
  --line: rgba(8,18,17,.12);
  --line-dark: rgba(246,231,199,.18);
  --shadow: 0 24px 80px rgba(8,18,17,.12);
  --shadow-strong: 0 44px 140px rgba(5,7,7,.36);
  --display: Georgia, "Times New Roman", serif;
  --body: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(circle at 6% 4%, rgba(64,224,208,.18), transparent 28%),
    radial-gradient(circle at 92% 8%, rgba(212,175,55,.18), transparent 30%),
    radial-gradient(circle at 88% 72%, rgba(122,18,50,.12), transparent 30%),
    linear-gradient(180deg, #fffaf1 0%, var(--ivory) 52%, #fff 100%);
}

a { color: inherit; }

img, video { max-width: 100%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 82px;
  padding: 12px clamp(16px, 4vw, 44px);
  display: flex;
  align-items: center;
  gap: 22px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(64,224,208,.16);
  box-shadow: 0 10px 36px rgba(16,42,67,.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px rgba(64,224,208,.16));
}

.brand strong {
  display: block;
  font-weight: 950;
  letter-spacing: -.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: .78rem;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.nav-links a,
.header-cta {
  text-decoration: none;
  font-weight: 850;
  border-radius: 999px;
  padding: 10px 13px;
}

.nav-links a:hover {
  background: rgba(64,224,208,.13);
}

.header-cta {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-mist), var(--gold));
  box-shadow: 0 12px 28px rgba(212,175,55,.18);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  border: 1px solid rgba(122,18,50,.16);
  border-radius: 999px;
  padding: 9px 11px;
  color: var(--burgundy);
  background: rgba(122,18,50,.07);
  font-weight: 950;
  cursor: pointer;
}

.menu-toggle span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--burgundy);
}

.menu-toggle em {
  margin-left: 4px;
  font-style: normal;
}

main {
  width: min(1500px, calc(100% - 28px));
  margin: 0 auto;
  padding: 28px 0 64px;
}

.luxury-shell {
  position: relative;
}

.luxury-shell:before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(246,231,199,.22);
  border-radius: 30px;
  pointer-events: none;
  z-index: 2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  gap: 0;
  overflow: hidden;
  border-radius: 42px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 12%, rgba(64,224,208,.24), transparent 30%),
    radial-gradient(circle at 90% 12%, rgba(212,175,55,.22), transparent 32%),
    radial-gradient(circle at 90% 80%, rgba(122,18,50,.42), transparent 34%),
    linear-gradient(135deg, var(--noir), var(--ink-soft) 52%, var(--burgundy-dark));
  box-shadow: var(--shadow-strong);
}

.hero-copy {
  min-height: 620px;
  padding: clamp(34px, 5vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 3;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 16px;
  border-radius: 999px;
  padding: 8px 12px;
  color: var(--gold);
  background: rgba(255,255,255,.09);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--display);
  letter-spacing: -.065em;
}

h1 {
  max-width: 850px;
  font-size: clamp(3.35rem, 8vw, 7.4rem);
  line-height: .82;
}

.lead {
  max-width: 700px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.76);
  font-size: 1.1rem;
  line-height: 1.85;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions { margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 950;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn.gold {
  color: var(--ink);
  background: linear-gradient(135deg, var(--gold-mist), var(--gold), #b88a18);
  box-shadow: 0 18px 42px rgba(212,175,55,.24);
}

.btn.glass {
  color: var(--white);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.09);
}

.btn.turquoise {
  color: var(--ink);
  background: var(--turquoise);
  box-shadow: 0 16px 34px rgba(64,224,208,.22);
}

.btn.burgundy {
  color: var(--white);
  background: linear-gradient(135deg, var(--burgundy), var(--burgundy-dark));
  box-shadow: 0 16px 34px rgba(122,18,50,.18);
}

.metrics {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.metrics div {
  min-width: 126px;
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.13);
}

.metrics strong,
.metrics span {
  display: block;
}

.metrics strong {
  font-size: 1.22rem;
}

.metrics span {
  margin-top: 4px;
  color: rgba(255,255,255,.66);
  font-size: .84rem;
}

.hero-media {
  position: relative;
  padding: 22px;
  z-index: 3;
}

.hero-media video {
  width: 100%;
  height: 100%;
  min-height: 570px;
  object-fit: cover;
  border-radius: 30px;
  background: #111827;
  border: 1px solid rgba(255,255,255,.14);
}

.media-caption {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 44px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(8,18,17,.66);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(14px);
}

.media-caption span {
  color: rgba(255,255,255,.68);
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.trust-bar div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(8,18,17,.07);
}

.trust-bar strong,
.trust-bar span {
  display: block;
}

.trust-bar strong {
  font-weight: 950;
}

.trust-bar span {
  margin-top: 4px;
  color: var(--muted);
  font-size: .9rem;
}

.intro-grid,
.category-grid,
.steps,
.split-cta,
.gallery-strip {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

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

.intro-grid article,
.steps article,
.split-cta > div,
.newsletter-section {
  padding: clamp(22px, 3vw, 38px);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(251,247,239,.92));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.intro-grid span,
.video-card span {
  color: var(--gold-dark);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .78rem;
}

.intro-grid h2,
.split-cta h2,
.newsletter-section h2 {
  margin-top: 12px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: .95;
}

.intro-grid p,
.steps p,
.split-cta p,
.section-heading p,
.newsletter-section p,
.video-card p {
  color: var(--muted);
  line-height: 1.75;
}

.gallery-strip {
  grid-template-columns: 1fr 1fr;
}

.video-card {
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--ink);
}

.video-card div {
  padding: 24px;
}

.video-card h2 {
  margin-top: 10px;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: .95;
}

.dark-section {
  margin-top: 34px;
  padding: clamp(30px, 5vw, 68px);
  border-radius: 34px;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 10%, rgba(64,224,208,.18), transparent 32%),
    radial-gradient(circle at 92% 15%, rgba(212,175,55,.16), transparent 30%),
    linear-gradient(135deg, var(--noir), var(--ink-soft), var(--burgundy-dark));
  border: 1px solid var(--line-dark);
}

.section-heading {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 28px;
}

.section-heading h2 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .9;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255,255,255,.68);
}

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

.category-grid article {
  position: relative;
  min-height: 220px;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
}

.category-grid b {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(255,255,255,.18);
  font-family: var(--display);
  font-size: 2rem;
}

.category-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.2rem;
  margin-top: 32px;
}

.category-grid p {
  color: rgba(255,255,255,.66);
  line-height: 1.7;
}

.how-section {
  padding: clamp(42px, 6vw, 80px) 0;
}

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

.steps b {
  color: rgba(8,18,17,.22);
  font-family: var(--display);
  font-size: 2.2rem;
}

.steps h3 {
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1;
}

.split-cta {
  grid-template-columns: 1fr 1fr;
}

.split-cta .btn {
  margin-top: 12px;
}

.newsletter-section {
  margin-top: 28px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  align-items: center;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
}

.newsletter-form label {
  display: grid;
  gap: 7px;
}

.newsletter-form span {
  font-weight: 900;
  font-size: .84rem;
}

.newsletter-form input {
  width: 100%;
  min-height: 48px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: 12px 13px;
  outline: 0;
  background: var(--white);
  font: inherit;
}

.newsletter-form input:focus {
  border-color: var(--turquoise);
  box-shadow: 0 0 0 4px rgba(64,224,208,.15);
}

.form-message {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px;
  border-radius: 14px;
  font-weight: 850;
}

.form-message.success {
  color: var(--turquoise-deep);
  background: var(--turquoise-mist);
}

.form-message.error {
  color: var(--burgundy);
  background: var(--burgundy-mist);
}

.site-footer {
  margin-top: 46px;
  padding: 60px 20px;
  display: grid;
  justify-items: center;
  text-align: center;
  color: var(--white);
  background: var(--ink);
}

.site-footer img {
  width: 76px;
  height: 76px;
  padding: 6px;
  border-radius: 22px;
  background: var(--white);
}

.site-footer h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer p {
  max-width: 760px;
  color: rgba(255,255,255,.68);
  line-height: 1.7;
}

.footer-links {
  justify-content: center;
  margin-top: 20px;
}

.footer-links a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 850;
}

.site-footer small {
  margin-top: 22px;
  color: rgba(255,255,255,.42);
}

@media (max-width: 1120px) {
  .hero,
  .intro-grid,
  .split-cta,
  .gallery-strip,
  .newsletter-section {
    grid-template-columns: 1fr;
  }

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

  .trust-bar,
  .category-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .newsletter-form {
    grid-template-columns: 1fr 1fr;
  }

  .newsletter-form .btn {
    grid-column: 1 / -1;
  }

  .nav-links,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links.is-open {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(64,224,208,.18);
    box-shadow: 0 24px 60px rgba(8,18,17,.14);
  }

  .nav-links.is-open a {
    padding: 13px;
    background: rgba(64,224,208,.08);
  }
}

@media (max-width: 640px) {
  main {
    width: min(100% - 20px, 1500px);
    padding-top: 16px;
  }

  .site-header {
    position: sticky;
    min-height: 72px;
  }

  .brand small {
    display: none;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .hero {
    border-radius: 28px;
  }

  .luxury-shell:before {
    inset: 10px;
    border-radius: 22px;
  }

  .hero-copy {
    padding: 30px 26px;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.7rem);
  }

  .lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .split-cta .btn,
  .newsletter-form .btn {
    width: 100%;
  }

  .hero-media {
    padding: 12px;
  }

  .hero-media video {
    min-height: 300px;
  }

  .media-caption {
    position: static;
    margin-top: 12px;
  }

  .trust-bar,
  .category-grid,
  .steps,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .intro-grid article,
  .steps article,
  .split-cta > div,
  .newsletter-section {
    border-radius: 24px;
  }
}

/* ============================================================
   SEO-rich homepage sections
   Buyer room intent + artist upload intent
============================================================ */

.room-seo-section {
  padding: clamp(42px, 6vw, 82px) 0 20px;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.room-grid article {
  min-height: 260px;
  padding: clamp(22px, 2.8vw, 30px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 10%, rgba(64, 224, 208, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(251,247,239,.92));
  border: 1px solid var(--line);
  box-shadow: 0 20px 62px rgba(8,18,17,.08);
}

.room-grid span {
  display: inline-flex;
  border-radius: 999px;
  padding: 7px 10px;
  color: var(--turquoise-deep);
  background: var(--turquoise-mist);
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.room-grid h3 {
  margin-top: 18px;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: .96;
}

.room-grid p {
  color: var(--muted);
  line-height: 1.75;
}

.artist-seo-section {
  margin-top: 34px;
  padding: clamp(28px, 5vw, 62px);
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .75fr);
  gap: 28px;
  align-items: center;
  border-radius: 36px;
  color: var(--white);
  background:
    radial-gradient(circle at 8% 14%, rgba(64,224,208,.20), transparent 32%),
    radial-gradient(circle at 92% 10%, rgba(212,175,55,.18), transparent 34%),
    radial-gradient(circle at 86% 82%, rgba(122,18,50,.44), transparent 36%),
    linear-gradient(135deg, var(--noir), var(--ink-soft), var(--burgundy-dark));
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow-strong);
}

.artist-seo-copy h2 {
  max-width: 920px;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: .88;
}

.artist-seo-copy p:not(.eyebrow) {
  max-width: 820px;
  color: rgba(255,255,255,.72);
  line-height: 1.82;
}

.artist-seo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dark-glass {
  border-color: rgba(255,255,255,.20);
  background: rgba(255,255,255,.08);
}

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

.artist-seo-list article {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.075);
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}

.artist-seo-list strong,
.artist-seo-list span {
  display: block;
}

.artist-seo-list strong {
  color: var(--gold);
  font-size: 1.08rem;
}

.artist-seo-list span {
  margin-top: 5px;
  color: rgba(255,255,255,.68);
  line-height: 1.55;
}

@media (max-width: 1120px) {
  .room-grid,
  .artist-seo-section {
    grid-template-columns: 1fr 1fr;
  }

  .artist-seo-copy {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .room-grid,
  .artist-seo-section {
    grid-template-columns: 1fr;
  }

  .room-grid article {
    min-height: auto;
  }

  .artist-seo-section {
    border-radius: 28px;
  }

  .artist-seo-actions {
    flex-direction: column;
  }

  .artist-seo-actions .btn {
    width: 100%;
  }
}

/* Art Events Near Me homepage block */
.events-discovery-section {
  width: min(1120px, calc(100% - 32px));
  margin: 48px auto;
}

.events-discovery-card {
  border: 1px solid rgba(193, 154, 107, 0.45);
  border-radius: 28px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at top left, rgba(64, 224, 208, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 252, 244, 0.98), rgba(255, 247, 235, 0.92));
  box-shadow: 0 24px 70px rgba(40, 22, 14, 0.09);
}

.events-discovery-card h2 {
  margin: 8px 0 12px;
  max-width: 760px;
}

.events-discovery-card p {
  max-width: 780px;
}

.event-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #5d1234;
  color: #fffaf0;
  text-decoration: none;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(93, 18, 52, 0.22);
}

.event-card-link:hover {
  transform: translateY(-1px);
}


/* Shared footer discovery links */
.afmr-footer-discovery {
  width: min(1080px, calc(100% - 28px));
  margin: 26px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(193, 154, 107, 0.28);
}

.afmr-footer-discovery p {
  margin: 0 0 10px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.72;
  font-weight: 800;
}

.afmr-footer-discovery div {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.afmr-footer-discovery a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(193, 154, 107, 0.34);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.afmr-footer-discovery a:hover {
  transform: translateY(-1px);
}

/* Buyer-first homepage hero */
.afmr-buyer-hero {
  max-width: 1180px;
  margin: 34px auto 54px;
  padding: clamp(28px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
  border-radius: 42px;
  border: 1px solid rgba(16,20,24,.12);
  background:
    radial-gradient(circle at 88% 18%, rgba(212,175,55,.22), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(0,169,157,.14), transparent 34%),
    linear-gradient(135deg, #fffaf0, #f1e3d1);
  box-shadow: 0 30px 90px rgba(16,20,24,.12);
  overflow: hidden;
}

.afmr-buyer-hero__kicker {
  margin: 0 0 14px;
  color: #5d1234;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 13px;
  font-weight: 950;
}

.afmr-buyer-hero h1 {
  max-width: 820px;
  margin: 0 0 18px;
  color: #101418;
  font-size: clamp(46px, 8vw, 88px);
  line-height: .9;
  letter-spacing: -.08em;
}

.afmr-buyer-hero__lead {
  max-width: 720px;
  margin: 0;
  color: #3e4742;
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.58;
}

.afmr-buyer-hero__routes {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.afmr-route-card {
  min-height: 150px;
  padding: 20px;
  border-radius: 24px;
  text-decoration: none;
  border: 1px solid rgba(16,20,24,.10);
  background: rgba(255,250,240,.76);
  box-shadow: 0 16px 44px rgba(16,20,24,.08);
}

.afmr-route-card span {
  display: block;
  margin-bottom: 12px;
  color: #056f68;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 950;
}

.afmr-route-card strong {
  display: block;
  color: #101418;
  font-size: 18px;
  line-height: 1.26;
  letter-spacing: -.03em;
}

.afmr-route-card--match {
  background: linear-gradient(135deg, #00a99d, #056f68);
}

.afmr-route-card--match span,
.afmr-route-card--match strong {
  color: #fffaf0;
}

.afmr-buyer-hero__mini {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-weight: 900;
}

.afmr-buyer-hero__mini a {
  color: #5d1234;
  text-decoration: none;
  border-bottom: 1px solid rgba(93,18,52,.28);
}

.afmr-buyer-hero__visual {
  position: relative;
}

.afmr-buyer-wall {
  min-height: 440px;
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(16,20,24,.10);
  background:
    repeating-linear-gradient(90deg, rgba(16,20,24,.025) 0 1px, transparent 1px 44px),
    linear-gradient(180deg, #fff7e9, #e9dac6);
  box-shadow: inset 0 0 0 10px rgba(255,255,255,.22);
}

.afmr-buyer-painting {
  position: absolute;
  left: 50%;
  top: 54px;
  transform: translateX(-50%);
  width: 58%;
  height: 210px;
  border: 10px solid #151413;
  border-radius: 16px;
  background:
    radial-gradient(circle at 34% 28%, #d4af37 0 12%, transparent 13%),
    radial-gradient(circle at 72% 44%, #fffaf0 0 8%, transparent 9%),
    linear-gradient(135deg, #101418, #00a99d 46%, #5d1234);
  box-shadow: 0 24px 60px rgba(16,20,24,.24);
}

.afmr-buyer-sofa {
  position: absolute;
  left: 50%;
  bottom: 62px;
  transform: translateX(-50%);
  width: 78%;
  height: 92px;
  border-radius: 44px 44px 22px 22px;
  background: linear-gradient(135deg, #5d1234, #261015);
  box-shadow: 0 24px 50px rgba(16,20,24,.18);
}

.afmr-buyer-sofa::before,
.afmr-buyer-sofa::after {
  content: "";
  position: absolute;
  bottom: -20px;
  width: 34px;
  height: 26px;
  background: #151413;
  border-radius: 0 0 10px 10px;
}

.afmr-buyer-sofa::before { left: 18%; }
.afmr-buyer-sofa::after { right: 18%; }

@media (max-width: 980px) {
  .afmr-buyer-hero {
    grid-template-columns: 1fr;
  }

  .afmr-buyer-hero__routes {
    grid-template-columns: 1fr;
  }

  .afmr-buyer-wall {
    min-height: 340px;
  }
}

@media (max-width: 640px) {
  .afmr-buyer-hero {
    margin: 20px 14px 38px;
    border-radius: 28px;
  }
}
