/* ===================================================================
   БИЗНЕС ПАРК — сайт девелоперской компании
   Палитра, типографика и сетка
   =================================================================== */

:root {
  /* base palette */
  --luster: #F4F1EC;
  --tan:    #DAD1C8;
  --aster:  #9BACD8;
  --royal:  #223382;
  --depths: #111144;
  --hab:    #F98513;

  /* theme — dark by default */
  --bg:        var(--depths);
  --bg-alt:    #0b0b33;
  --surface:   #1a1a55;
  --ink:       var(--luster);
  --ink-dim:   color-mix(in srgb, var(--luster) 60%, transparent);
  --ink-faint: color-mix(in srgb, var(--luster) 30%, transparent);
  --rule:      color-mix(in srgb, var(--luster) 14%, transparent);
  --accent:    var(--hab);
  --secondary: var(--aster);

  /* type */
  --font-display: "Unbounded", "Onest", system-ui, sans-serif;
  --font-body:    "Onest", system-ui, -apple-system, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, monospace;

  /* spacing rhythm */
  --gutter: clamp(20px, 4vw, 64px);
  --col-pad: clamp(16px, 3vw, 40px);
}

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

html, body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  font-feature-settings: "ss01", "cv11";
}

body {
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

::selection { background: var(--accent); color: var(--depths); }

/* ============================ NAV ============================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  width: 60px; height: 28px;
  background-color: var(--ink);
  -webkit-mask: url(images/logo-cream.png) center/contain no-repeat;
          mask: url(images/logo-cream.png) center/contain no-repeat;
}
.brand-text {
  display: flex; flex-direction: column; line-height: 1.05;
}
.brand-text .b1 {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-text .b2 {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav-links {
  display: flex;
  gap: 36px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--ink-dim);
  transition: color .2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--accent); border-color: var(--accent); color: var(--depths); }
.nav-cta .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.nav-cta:hover .dot { background: var(--depths); }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px var(--gutter) 80px;
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 60px;
  overflow: hidden;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.hero-meta > div { display: flex; flex-direction: column; gap: 6px; }
.hero-meta .label { color: var(--ink-faint); }
.hero-meta .value { color: var(--ink); }

.hero-meta .m1 { grid-column: 1 / span 3; }
.hero-meta .m2 { grid-column: 5 / span 2; }
.hero-meta .m3 { grid-column: 8 / span 2; }
.hero-meta .m4 { grid-column: 11 / span 2; text-align: right; align-items: flex-end; }

.hero-headline {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}

.hero-headline h1 {
  grid-column: 1 / span 12;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(64px, 14.5vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.04em;
}
.hero-headline h1 .accent { color: var(--accent); }
.hero-headline h1 .line2 { display: block; padding-left: 14vw; }
.hero-headline h1 .italic { font-style: italic; font-weight: 400; }

.hero-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.hero-bottom .blurb {
  grid-column: 1 / span 5;
  font-size: clamp(16px, 1.4vw, 20px);
  color: var(--ink-dim);
  max-width: 36ch;
  line-height: 1.4;
}
.hero-bottom .blurb strong { color: var(--ink); font-weight: 500; }
.hero-bottom .tags {
  grid-column: 7 / span 6;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}
.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-dim);
}
.tag .swatch { width: 8px; height: 8px; border-radius: 50%; }
.tag.t-comm .swatch { background: var(--accent); }
.tag.t-resi .swatch { background: var(--aster); }
.tag.t-ware .swatch { background: var(--tan); }

/* featured hero photo */
.hero-featured {
  position: relative;
  margin: 0 var(--gutter) 60px;
  height: 56vh;
  min-height: 420px;
  max-height: 720px;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface);
}
.hero-featured img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-featured .meta-overlay {
  position: absolute;
  left: 24px; bottom: 24px; right: 24px;
  display: flex; align-items: end; justify-content: space-between;
  gap: 24px;
  z-index: 1;
  color: var(--luster);
}
.hero-featured .meta-overlay::before {
  content: "";
  position: absolute; inset: -120% 0 0 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.6) 100%);
  z-index: -1;
  pointer-events: none;
}
.hero-featured .o-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.85;
}
.hero-featured .o-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.hero-featured .o-right {
  text-align: right;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .hero { padding-top: 110px; min-height: auto; }
  .hero-meta .m1, .hero-meta .m2, .hero-meta .m3, .hero-meta .m4 { grid-column: span 6; text-align: left; align-items: flex-start; }
  .hero-headline h1 .line2 { padding-left: 0; }
  .hero-bottom .blurb, .hero-bottom .tags { grid-column: 1 / -1; }
  .hero-bottom .tags { justify-content: flex-start; }
}

/* ============================ SECTION HEADER ============================ */
.section {
  padding: 100px var(--gutter);
  position: relative;
}
.section--alt { background: var(--bg-alt); }

.sec-head {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 64px;
  border-top: 1px solid var(--rule);
  padding-top: 24px;
}
.sec-head .idx {
  grid-column: 1 / span 2;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
}
.sec-head .kicker {
  grid-column: 3 / span 3;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.sec-head h2 {
  grid-column: 6 / span 7;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sec-head h2 .italic { font-style: italic; font-weight: 400; color: var(--accent); }

@media (max-width: 900px) {
  .sec-head .idx { grid-column: span 6; }
  .sec-head .kicker { grid-column: span 6; text-align: right; }
  .sec-head h2 { grid-column: 1 / -1; margin-top: 16px; }
}

/* ============================ ABOUT ============================ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.about-lede {
  grid-column: 1 / span 7;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(24px, 2.8vw, 40px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-wrap: pretty;
}
.about-lede em { color: var(--accent); font-style: normal; }

.about-aside {
  grid-column: 9 / span 4;
  display: flex; flex-direction: column; gap: 28px;
  font-size: 15px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.about-aside p { text-wrap: pretty; }
.about-aside .quote {
  padding: 24px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  color: var(--ink);
  font-size: 16px;
  position: relative;
}
.about-aside .quote::before {
  content: "“";
  position: absolute;
  top: -10px; left: 20px;
  background: var(--bg);
  padding: 0 8px;
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--accent);
  line-height: 1;
}
.stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.stat {
  padding: 32px 24px;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
}
.stat:first-child { padding-left: 0; }
.stat:last-child { border-right: 0; padding-right: 0; }
.stat .num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(56px, 6.5vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
}
.stat .num .unit {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-dim);
  font-weight: 500;
}
.stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  max-width: 22ch;
}

@media (max-width: 900px) {
  .about-lede, .about-aside { grid-column: 1 / -1; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--rule); }
}

/* ============================ FORMATS ============================ */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rule);
}
.format {
  padding: 40px 32px 56px 0;
  border-right: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 24px;
  position: relative;
  min-height: 320px;
}
.format:last-child { border-right: 0; padding-right: 0; }
.format:not(:first-child) { padding-left: 32px; }

.format .img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface);
}
.format .img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
  transition: transform .6s cubic-bezier(.2,.7,.3,1);
}
.format:hover .img img { transform: scale(1.03); }
.format .img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(17,17,68,0.4) 100%);
  pointer-events: none;
}

.format .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
}
.format h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 2.6vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.format h3 .accent { color: var(--accent); }
.format p {
  margin-top: auto;
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: 32ch;
}
@media (max-width: 900px) {
  .formats { grid-template-columns: 1fr; }
  .format { border-right: 0; border-bottom: 1px solid var(--rule); padding: 32px 0; min-height: auto; }
  .format:not(:first-child) { padding-left: 0; }
  .format:last-child { border-bottom: 0; }
}

/* ============================ PROJECTS ============================ */
.projects {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  row-gap: 80px;
}

.project {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  cursor: pointer;
  height: 100%;
}
.project .card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  background: var(--surface);
  aspect-ratio: var(--ratio, 4 / 3);
  border: 1px solid var(--rule);
}
.project .card img {
  position: absolute; inset: 0;
}
.project .card img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .8s cubic-bezier(.2,.7,.3,1);
}
.project:hover .card img { transform: scale(1.04); }
.project .card .scrim {
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 50%;
  background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
}
.project .card .img-label {
  position: absolute;
  left: 16px; bottom: 14px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(244,241,236,0.85);
  display: flex; align-items: center; gap: 8px;
  z-index: 1;
}
.project .card .img-label::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent);
}
.project .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.project .meta .idx { color: var(--ink); }
.project .meta .status { display: inline-flex; align-items: center; gap: 8px; }
.project .meta .status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }
.project .meta .status.done .dot { background: var(--aster); }

.project h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 32px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  text-wrap: balance;
}
.project p.desc {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
  max-width: 44ch;
}

.project .footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
}
.project .footer .area { color: var(--ink); }
.project .footer .arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  transition: background .2s, color .2s, border-color .2s;
}
.project:hover .footer .arrow { background: var(--accent); color: var(--depths); border-color: var(--accent); }

/* column spans for editorial rhythm */
.p-wide { grid-column: span 12; }
.p-wide .card { aspect-ratio: 21 / 9; }
.p-wide .card-row { display: grid; grid-template-columns: 1.4fr 1fr; gap: 32px; align-items: end; }

.p-half { grid-column: span 6; }
.p-third { grid-column: span 4; }
.p-2-3 { grid-column: span 8; }
.p-1-3 { grid-column: span 4; }
.p-7 { grid-column: span 7; }
.p-5 { grid-column: span 5; }

@media (max-width: 1100px) {
  .p-third { grid-column: span 6; }
}
@media (max-width: 720px) {
  .p-half, .p-third, .p-2-3, .p-1-3, .p-7, .p-5 { grid-column: span 12; }
}

/* ============================ CTA ============================ */
.cta {
  position: relative;
  padding: 120px var(--gutter);
  background: var(--accent);
  color: var(--depths);
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: end;
}
.cta h2 {
  grid-column: 1 / span 8;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.03em;
}
.cta h2 .italic { font-style: italic; font-weight: 400; }
.cta .cta-right {
  grid-column: 10 / span 3;
  display: flex; flex-direction: column; gap: 16px;
}
.cta .cta-right p { font-size: 15px; line-height: 1.4; }
.cta .cta-right .btn-big {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border: 1px solid var(--depths);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--depths);
  color: var(--luster);
  transition: transform .2s;
}
.cta .cta-right .btn-big:hover { transform: translateY(-2px); }
.cta .cta-right .btn-big .arrow {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--depths);
  display: grid; place-items: center;
}

@media (max-width: 900px) {
  .cta h2, .cta .cta-right { grid-column: 1 / -1; }
}

/* ============================ CONTACT ============================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  align-items: start;
}
.contact-left { grid-column: 1 / span 7; }
.contact-right { grid-column: 9 / span 4; }

.contact-left h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 40px;
  text-wrap: balance;
}
.contact-left h3 .accent { color: var(--accent); }

.person {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.person .avatar {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--rule);
  background: var(--surface);
  position: relative;
}
.person .avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.95);
}
.person .info { display: flex; flex-direction: column; gap: 4px; }
.person .role { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-dim); }
.person .name { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.01em; }
.person .lines { margin-top: 14px; display: flex; flex-direction: column; gap: 6px; font-size: 16px; }
.person .lines a { display: inline-flex; align-items: center; gap: 10px; }
.person .lines a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.contact-right .panel {
  border: 1px solid var(--rule);
  border-radius: 4px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 16px;
}
.contact-right .row {
  display: flex; flex-direction: column; gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--rule);
}
.contact-right .row:last-child { border-bottom: 0; padding-bottom: 0; }
.contact-right .row .k { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-faint); }
.contact-right .row .v { font-size: 15px; }

@media (max-width: 900px) {
  .contact-left, .contact-right { grid-column: 1 / -1; }
}

/* ============================ FOOTER ============================ */
.footer {
  border-top: 1px solid var(--rule);
  padding: 36px var(--gutter);
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-dim);
  align-items: center;
}
.footer .f-brand { grid-column: 1 / span 4; display: flex; align-items: center; gap: 12px; }
.footer .f-mid { grid-column: 5 / span 4; }
.footer .f-right { grid-column: 9 / span 4; text-align: right; }

@media (max-width: 900px) {
  .footer .f-brand, .footer .f-mid, .footer .f-right { grid-column: 1 / -1; text-align: left; }
}

/* ============================ MARQUEE ============================ */
.marquee {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  padding: 24px 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: scroll 40s linear infinite;
  padding-right: 60px;
}
.marquee .sep { color: var(--accent); margin: 0 32px; display: inline-block; transform: translateY(-6px); }
.marquee .italic { font-style: italic; font-weight: 400; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================ MISC ============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-in.in {
  opacity: 1;
  transform: none;
}

/* big background number */
.bg-num {
  position: absolute;
  right: var(--gutter); top: 60px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(120px, 22vw, 380px);
  line-height: 1;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px var(--rule);
  pointer-events: none;
  opacity: 0.7;
}
