/* ==========================================================================
   CURTIS SERVICES — Service page furniture
   Shared by removals.html, drone.html and erg.html. The accent is supplied
   by [data-brand] in base.css, so this file never names a colour.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: clamp(1.5rem, 3vw, 2.5rem);
  overflow: hidden;
  isolation: isolate;
  background: var(--void);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: grayscale(0.55) contrast(1.1);
  animation: hero-drift 26s var(--ease-io) infinite alternate;
}

@keyframes hero-drift {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to   { transform: scale(1.14) translate3d(-1.5%, -1.5%, 0); }
}

/* Atmosphere that works with or without a photograph behind it */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(80% 55% at 12% 108%, var(--accent-glow) 0%, transparent 62%),
    radial-gradient(60% 45% at 92% -6%, color-mix(in srgb, var(--accent) 12%, transparent) 0%, transparent 65%),
    linear-gradient(180deg, rgba(5,6,7,0.86) 0%, rgba(5,6,7,0.28) 34%, rgba(5,6,7,0.92) 100%);
}

/* Fine engineering grid, faint */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(var(--hair-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--hair-soft) 1px, transparent 1px);
  background-size: clamp(48px, 7vw, 96px) clamp(48px, 7vw, 96px);
  mask-image: radial-gradient(120% 90% at 50% 40%, #000 0%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 40%, #000 0%, transparent 78%);
  opacity: 0.9;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* Size the hero word against the text column rather than the whole viewport,
   so the longest of them ("REMOVALS") still fits on a narrow phone. The vw
   clamp on --t-mega stays as the fallback. */
@supports (container-type: inline-size) {
  .hero__inner { container-type: inline-size; }
  .hero__title { font-size: clamp(2.9rem, 18cqw, 15rem); }
}

.hero__eyebrow { margin-bottom: clamp(1rem, 2vw, 1.5rem); }

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-mega);
  line-height: 0.78;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}

.hero__title .thin {
  display: block;
  font-size: 0.34em;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 0.25em;
}

.hero__foot {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: end;
  padding-top: clamp(1.25rem, 2.5vw, 2rem);
  border-top: 1px solid var(--hair);
}

@media (min-width: 900px) {
  .hero__foot { grid-template-columns: 1.05fr 0.95fr; }
}

.hero__strap {
  font-size: var(--t-lead);
  line-height: 1.38;
  color: var(--paper-80);
  max-width: 46ch;
  letter-spacing: -0.012em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

/* Ticker of credentials under the hero */
.ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-block: 1px solid var(--hair-soft);
  background: color-mix(in srgb, var(--accent) 5%, var(--void));
  padding-block: 0.85rem;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker__rail {
  display: flex;
  width: max-content;
  animation: ticker 38s linear infinite;
}

.ticker:hover .ticker__rail { animation-play-state: paused; }

.ticker__set {
  display: flex;
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  padding-right: clamp(1.75rem, 4vw, 3.5rem);
}

.ticker__set li {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper-62);
  white-space: nowrap;
}

.ticker__set li::before {
  content: "";
  width: 5px; height: 5px;
  border-radius: 999px;
  background: var(--accent);
  flex: none;
}

@keyframes ticker { to { transform: translateX(-50%); } }

/* --------------------------------------------------------------------------
   2. Statement
   -------------------------------------------------------------------------- */

.statement { background: var(--ink); }

.statement__text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 4.3vw, 3.9rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 20ch;
}

.statement__text .dim { color: var(--paper-24); }
.statement__text .hit { color: var(--accent); }

.statement__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: end;
}

@media (min-width: 960px) {
  .statement__grid { grid-template-columns: 1.25fr 0.75fr; }
}

.statement__aside { display: grid; gap: 1.25rem; }

/* --------------------------------------------------------------------------
   3. Service list — rows with a cursor-tracked preview
       Ported from the 21st.dev "Project Showcase" component.
   -------------------------------------------------------------------------- */

.offer { position: relative; background: var(--ink); }

.offer__head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem clamp(1.5rem, 4vw, 4rem);
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

/* Heading left, note right, once there is room for both on one line. */
.offer__head > :first-child { flex: 1 1 22rem; }
.offer__head > .body-dim { flex: 0 1 26rem; }

.offer__list { border-top: 1px solid var(--hair); }

.row {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  column-gap: clamp(0.9rem, 2.4vw, 2rem);
  row-gap: 0.45rem;
  padding: clamp(1.35rem, 2.8vw, 2.1rem) 0;
  border-bottom: 1px solid var(--hair-soft);
  transition: border-color var(--dur-fast) var(--ease-out);
}

/* Stacked on narrow screens: number, name, note, with the mark held to the
   right across both rows. */
.row__no   { grid-column: 1; grid-row: 1; }
.row__name { grid-column: 2; grid-row: 1; }
.row__note { grid-column: 2; grid-row: 2; }
.row__mark { grid-column: 3; grid-row: 1 / span 2; }

/* Wide enough for the note to sit beside the name instead of beneath it. */
@media (min-width: 980px) {
  .row {
    grid-template-columns: auto minmax(0, 1.05fr) minmax(0, 0.95fr) auto;
    align-items: center;
  }
  .row__note { grid-column: 3; grid-row: 1; margin-top: 0; max-width: 44ch; }
  .row__mark { grid-column: 4; grid-row: 1; }
}

.row::before {
  content: "";
  position: absolute;
  inset: 0 calc(var(--gutter) * -0.5);
  background: linear-gradient(90deg, var(--accent-wash), transparent 62%);
  opacity: 0;
  transition: opacity var(--dur-fast) var(--ease-out);
  pointer-events: none;
}

.row:hover::before, .row:focus-within::before { opacity: 1; }
.row:hover { border-color: color-mix(in srgb, var(--accent) 32%, transparent); }

.row__no {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--paper-24);
  transition: color var(--dur-fast) var(--ease-out);
  font-variant-numeric: tabular-nums;
}
.row:hover .row__no { color: var(--accent); }

.row__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.25rem, 3.1vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  transition: transform var(--dur-fast) var(--ease-out);
  transform-origin: left center;
}
.row:hover .row__name { transform: translateX(0.55rem); }

.row__note {
  margin-top: 0.4rem;
  font-size: var(--t-small);
  color: var(--paper-62);
  max-width: 52ch;
  transition: color var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
  transform-origin: left center;
}
.row:hover .row__note { color: var(--paper-80); transform: translateX(0.55rem); }

.row__mark {
  display: grid;
  place-items: center;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px var(--hair);
  color: var(--paper-42);
  flex: none;
  align-self: center;
  transition: background var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out),
              box-shadow var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}
.row__mark svg { width: 0.9rem; height: 0.9rem; }

.row:hover .row__mark {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: inset 0 0 0 1px transparent;
  transform: rotate(45deg);
}

/* The floating preview that follows the pointer.
   Two boxes on purpose: main.js writes --px/--py on the outer one every frame,
   and the inner one owns the fade-and-pop. Putting both on a single element
   means the scale multiplies the translation and the card drifts as it opens. */
.peek {
  position: fixed;
  top: 0; left: 0;
  z-index: 400;
  width: clamp(13rem, 20vw, 19rem);
  aspect-ratio: 4 / 3;
  pointer-events: none;
  transform: translate3d(var(--px, 0), var(--py, 0), 0);
  will-change: transform;
}

.peek__card {
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: 0 30px 70px -20px rgba(0, 0, 0, 0.8),
              inset 0 0 0 1px var(--hair);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.peek.is-on .peek__card { opacity: 1; transform: none; }

.peek__layer {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08);
  filter: blur(8px);
  transition: opacity 0.45s var(--ease-out),
              transform 0.45s var(--ease-out),
              filter 0.45s var(--ease-out);
}

.peek__layer.is-on { opacity: 1; transform: scale(1); filter: none; }

@media (hover: none), (max-width: 899px) {
  .peek { display: none; }
}

/* --------------------------------------------------------------------------
   4. Process
   -------------------------------------------------------------------------- */

.process { background: var(--ink-2); }

.process__steps {
  display: grid;
  gap: 1px;
  margin-top: clamp(2rem, 4vw, 3.5rem);
  background: var(--hair-soft);
  border-block: 1px solid var(--hair-soft);
}

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

.step {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem) clamp(1.25rem, 2.2vw, 2rem);
  background: var(--ink-2);
  overflow: hidden;
  transition: background var(--dur-fast) var(--ease-out);
}

.step::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur) var(--ease-out);
}

.step:hover { background: var(--ink-3); }
.step:hover::before { transform: scaleX(1); }

.step__no {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--accent);
}

.step__name {
  margin: 1.1rem 0 0.55rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.1rem, 1.9vw, 1.5rem);
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.step p { font-size: var(--t-small); color: var(--paper-62); }

/* --------------------------------------------------------------------------
   5. Proof — figures and a quote
   -------------------------------------------------------------------------- */

.proof { background: var(--ink); }

.proof__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

@media (min-width: 960px) {
  .proof__grid { grid-template-columns: 0.9fr 1.1fr; }
}

.figures { display: grid; gap: 1px; background: var(--hair-soft); border: 1px solid var(--hair-soft); border-radius: var(--radius); overflow: hidden; }

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

.figure {
  background: var(--ink-2);
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
}

.figure__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--accent);
}

.figure__l {
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--paper-42);
  line-height: 1.5;
}

.quote { position: relative; padding-left: clamp(1.5rem, 3vw, 2.75rem); }

.quote::before {
  content: "";
  position: absolute;
  left: 0; top: 0.35rem; bottom: 0.35rem;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
}

.quote blockquote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 2.7vw, 2.15rem);
  line-height: 1.16;
  letter-spacing: -0.032em;
  text-wrap: balance;
}

.quote blockquote em { font-style: normal; color: var(--accent); }

.quote figcaption {
  margin-top: 1.35rem;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-42);
}

/* --------------------------------------------------------------------------
   6. Gallery
   -------------------------------------------------------------------------- */

.gallery { background: var(--ink-2); }

.gallery__grid {
  display: grid;
  gap: clamp(0.5rem, 1vw, 0.9rem);
  grid-template-columns: repeat(2, 1fr);
  margin-top: clamp(2rem, 4vw, 3rem);
}

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

.shot {
  position: relative;
  aspect-ratio: var(--ar, 1);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    radial-gradient(120% 100% at 50% 110%, var(--accent-wash), transparent 68%),
    var(--ink-3);
  box-shadow: inset 0 0 0 1px var(--hair-soft);
}

.shot:nth-child(4n + 1) { --ar: 4 / 5; }
.shot:nth-child(4n + 2) { --ar: 1; }
.shot:nth-child(4n + 3) { --ar: 1; }
.shot:nth-child(4n + 4) { --ar: 4 / 5; }

.shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out), filter var(--dur) var(--ease-out);
  filter: grayscale(0.4);
}
.shot:hover img { transform: scale(1.06); filter: none; }

.shot__empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  gap: 0.5rem;
  align-content: center;
  color: var(--paper-24);
}
.shot__empty svg { width: clamp(1.5rem, 3vw, 2.25rem); color: var(--accent); opacity: 0.55; }
.shot__empty span {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   7. Enquiry
   -------------------------------------------------------------------------- */

.enquiry {
  position: relative;
  background: var(--void);
  overflow: hidden;
}

.enquiry::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 60% at 78% 110%, var(--accent-glow), transparent 68%);
  opacity: 0.55;
  pointer-events: none;
}

.enquiry__grid {
  position: relative;
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: start;
}

@media (min-width: 960px) {
  .enquiry__grid { grid-template-columns: 0.95fr 1.05fr; }
}

.enquiry__lede {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  text-wrap: balance;
}

.direct { display: grid; gap: 0.75rem; margin-top: clamp(1.75rem, 3vw, 2.5rem); }

.direct__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--paper) 4%, transparent);
  box-shadow: inset 0 0 0 1px var(--hair);
  transition: box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out),
              transform var(--dur-fast) var(--ease-out);
}

.direct__item:hover {
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 55%, transparent);
  background: var(--accent-wash);
  transform: translateY(-2px);
}

.direct__icon {
  display: grid;
  place-items: center;
  width: 2.4rem; height: 2.4rem;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  flex: none;
}
.direct__icon svg { width: 1.05rem; height: 1.05rem; }

.direct__k {
  display: block;
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-42);
}

.direct__v {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.3rem);
  letter-spacing: -0.02em;
}

/* --- Form ----------------------------------------------------------------- */

.form {
  display: grid;
  gap: 1.1rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border-radius: var(--radius-lg);
  background: color-mix(in srgb, var(--paper) 3%, var(--ink));
  box-shadow: inset 0 0 0 1px var(--hair);
}

@media (min-width: 620px) {
  .form { grid-template-columns: 1fr 1fr; }
  .form .field--wide, .form .form__foot, .form .form__note { grid-column: 1 / -1; }
}

.field { display: grid; gap: 0.5rem; }

.field label {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper-62);
}

.field label .req { color: var(--accent); }

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  border: 0;
  background: var(--ink-2);
  box-shadow: inset 0 0 0 1px var(--hair);
  font-family: var(--font-body);
  font-size: var(--t-small);
  transition: box-shadow var(--dur-fast) var(--ease-out),
              background var(--dur-fast) var(--ease-out);
}

.field textarea { resize: vertical; min-height: 7rem; }

.field input::placeholder,
.field textarea::placeholder { color: var(--paper-24); }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--ink-3);
  box-shadow: inset 0 0 0 1px var(--accent), 0 0 0 4px var(--accent-wash);
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23F4F3EE' stroke-width='1.6'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 0.7rem;
  padding-right: 2.4rem;
}

.field select option { background: var(--ink-2); color: var(--paper); }

/* Honeypot — off-screen, never announced */
.field--trap {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.form__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.25rem;
}

.form__note {
  font-size: var(--t-small);
  line-height: 1.55;
  color: var(--paper-42);
  max-width: 52ch;
}

.form__status {
  font-family: var(--font-mono);
  font-size: var(--t-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.form__status[data-state="ok"]   { color: var(--accent); }
.form__status[data-state="bad"]  { color: #FF6B6B; }
.form__status[data-state="busy"] { color: var(--paper-62); }

.field input:user-invalid,
.field textarea:user-invalid { box-shadow: inset 0 0 0 1px #FF6B6B; }

/* --- Peek: typographic card used when a row has no photograph yet --------- */

.peek__word {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--accent);
  transition: opacity var(--dur-fast) var(--ease-out);
}

.peek.has-shot .peek__word { opacity: 0; }

/* --------------------------------------------------------------------------
   8. Reel band — the link out to Instagram
       Used in place of .gallery until there are photographs to put in it.
   -------------------------------------------------------------------------- */

.reel {
  position: relative;
  overflow: hidden;
  background: var(--ink-2);
  border-block: 1px solid var(--hair-soft);
}

.reel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 120% at 15% 50%, var(--accent-wash), transparent 60%),
    radial-gradient(50% 120% at 88% 50%, var(--accent-wash), transparent 60%);
  pointer-events: none;
}

.reel__inner {
  position: relative;
  display: grid;
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
}

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

.reel__handle {
  display: block;
  margin-top: 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.75rem, 5vw, 4rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  color: var(--accent);
  word-break: break-word;
}

.reel__note {
  margin-top: 1rem;
  font-size: var(--t-small);
  color: var(--paper-62);
  max-width: 46ch;
}

/* Three brand-coloured bars, angled, as a graphic anchor */
.reel__bars {
  display: flex;
  gap: 0.5rem;
  height: clamp(5rem, 11vw, 9rem);
  transform: skewX(-12deg);
}

.reel__bars i {
  width: clamp(1.1rem, 2.4vw, 2rem);
  border-radius: 4px;
  background: var(--accent);
  opacity: 0.30;
}
.reel__bars i:nth-child(2) { opacity: 0.55; }
.reel__bars i:nth-child(3) { opacity: 0.85; }

@media (max-width: 899px) { .reel__bars { display: none; } }
