/* =========================================================
   LumaMotion
   Datei: /public/css/index.css

   Zweck:
   - Base + Landing Page Styles (ohne Header/Footer)
   - Header/Footer sind ausgelagert nach:
     - /public/css/header.css
     - /public/css/footer.css
   ========================================================= */

/* ---------- Reset / Base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: #1f2937;
  background: #f6f8fb;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button { font: inherit; }

:root{
  /* Brand-ish (hell, aber auf weiß sichtbar) */
  --lm-ink: #1f2937;
  --lm-ink-soft: #475569;

  --lm-bg: #f6f8fb;
  --lm-surface: #ffffff;
  --lm-surface-2: #f1f6fb;

  --lm-border: rgba(2, 6, 23, .10);
  --lm-shadow: 0 12px 30px rgba(2, 6, 23, .08);
  --lm-shadow-soft: 0 8px 20px rgba(2, 6, 23, .06);

  /* Akzent (Logo blau/grau -> clean) */
  --lm-accent: #8fb4cd;
  --lm-accent-2: #a7c9de;
  --lm-accent-ink: #17324a;

  /* Wedding Soft Accents (super dezent, nicht kitschig) */
  --lm-blush: rgba(238, 209, 220, .55);
  --lm-blush-strong: rgba(238, 209, 220, .85);
  --lm-lilac: rgba(210, 204, 240, .55);
  --lm-lilac-strong: rgba(210, 204, 240, .85);

  --lm-radius: 18px;
  --lm-radius-sm: 12px;

  --lm-container: 1160px;
}

/* ---------- Helpers ---------- */
.lm-container{
  width: min(var(--lm-container), calc(100% - 40px));
  margin: 0 auto;
}

.lm-center { text-align: center; }

/* ---------- Buttons ---------- */
.lm-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
  user-select: none;
}

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

.lm-btn--primary{
  background: linear-gradient(135deg, var(--lm-accent-2), var(--lm-accent));
  color: var(--lm-accent-ink);
  box-shadow: 0 14px 30px rgba(143, 180, 205, .35);
}

.lm-btn--primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(143, 180, 205, .45);
}

.lm-btn--soft{
  background: rgba(143, 180, 205, .16);
  border-color: rgba(143, 180, 205, .35);
  color: var(--lm-ink);
}

.lm-btn--soft:hover{
  background: rgba(143, 180, 205, .22);
  transform: translateY(-1px);
}

.lm-btn--ghost{
  background: rgba(255, 255, 255, .55);
  border-color: rgba(2, 6, 23, .12);
  color: var(--lm-ink);
  box-shadow: var(--lm-shadow-soft);
}

.lm-btn--ghost:hover{
  background: rgba(255, 255, 255, .75);
  transform: translateY(-1px);
}

.lm-btn--full{ width: 100%; }

/* ---------- Main / Hero ---------- */
.lm-main { width: 100%; }

.lm-hero{
  position: relative;
  background: var(--lm-bg);
}

/* NOTE:
   Header-Logo ragt über den Header hinaus (transform in header.css).
   Damit es nicht mit dem Hero kollidiert, geben wir dem Hero-Video oben etwas Luft.
*/
.lm-hero__videoWrap{
  position: relative;
  width: 100%;
  height: clamp(420px, 62vh, 720px);
  overflow: hidden;
  background: #e9f0f6;
  border-bottom: 1px solid var(--lm-border);
  padding-top: 46px; /* Platz für Logo-Overhang */
}

/* Video soll weiterhin covern, trotz padding */
.lm-hero__video{
  width: 100%;
  height: calc(100% - 46px);
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  filter: contrast(1.03) saturate(1.05);
}

/* Soft gradient overlay for readability */
.lm-hero__gradient{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(246, 248, 251, .10) 0%, rgba(246, 248, 251, .25) 35%, rgba(246, 248, 251, .92) 100%),
    radial-gradient(1200px 600px at 20% 20%, rgba(167, 201, 222, .25), transparent 55%),
    radial-gradient(900px 500px at 80% 30%, rgba(143, 180, 205, .20), transparent 60%);
}

/* Click overlay button */
.lm-hero__overlay{
  position: absolute;
  inset: 0;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: opacity .2s ease;
}

.lm-hero__overlay.is-hidden{
  opacity: 0;
  pointer-events: none;
}

.lm-hero__overlayInner{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(10px);
}

.lm-hero__playIcon{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--lm-accent-2), var(--lm-accent));
  position: relative;
  box-shadow: 0 14px 26px rgba(143, 180, 205, .40);
}

.lm-hero__playIcon::after{
  content: "";
  position: absolute;
  left: 18px;
  top: 14px;
  width: 0;
  height: 0;
  border-left: 12px solid rgba(23, 50, 74, .92);
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.lm-hero__overlayText{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  font-weight: 800;
  color: var(--lm-ink);
  line-height: 1.1;
}

.lm-hero__overlaySub{
  font-size: 12px;
  font-weight: 700;
  color: rgba(71, 85, 105, .85);
  letter-spacing: .02em;
  margin-top: 4px;
}

/* ---------- Hero Controls (rechts, dezenter, Volume-Box statt Slider) ---------- */
.lm-hero__controls{
  position: absolute;
  right: 28px;  /* weiter nach links (größerer right = weiter links) */
  bottom: 18px;
  z-index: 6;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;

  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

  pointer-events: none; /* nur die Kinder sollen klickbar sein */
}

.lm-hero__controls > *{
  pointer-events: auto;
}

/* Audio-Cluster (Mute + Volume Box) */
.lm-hero__audio{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.lm-hero__ctrlBtn{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255, 255, 255, .58);
  box-shadow: var(--lm-shadow-soft);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select: none;
  backdrop-filter: blur(10px);
}

.lm-hero__ctrlBtn:hover{
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .72);
  box-shadow: var(--lm-shadow);
}

.lm-hero__ctrlBtn:active{
  transform: translateY(1px);
}

.lm-hero__ctrlBtn:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 180, 205, .24), var(--lm-shadow);
  border-color: rgba(143, 180, 205, .55);
}

#heroMuteIcon{
  font-size: 16px;
  line-height: 1;
  transform: translateY(-.5px);
}

/* Volume Box (ziehen in der Box -> blauer Balken) */
.lm-hero__volBox{
  width: 44px;
  height: 140px;
  border-radius: 999px;
  border: 1px solid rgba(2, 6, 23, .10);
  background: rgba(255, 255, 255, .48);
  box-shadow: var(--lm-shadow-soft);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;

  cursor: ns-resize;
  user-select: none;
  touch-action: none; /* wichtig für Pointer-Drag */
}

/* dezente innere “Track”-Optik */
.lm-hero__volBox::before{
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 999px;
  background: rgba(2, 6, 23, .10);
}

/* blauer Fill (Höhe wird per JS gesetzt) */
.lm-hero__volFill{
  position: absolute;
  left: 8px;
  right: 8px;
  bottom: 8px;
  height: 70%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(167, 201, 222, .98), rgba(143, 180, 205, .98));
  box-shadow: 0 12px 18px rgba(143, 180, 205, .18);
}

/* kleiner Knob als dezenter Indikator */
.lm-hero__volKnob{
  position: absolute;
  left: 50%;
  bottom: 70%;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(2, 6, 23, .14);
  box-shadow: 0 10px 18px rgba(2, 6, 23, .12);
  transform: translate(-50%, 50%); /* hält den Knob optisch “im” Track */
}

/* Hover/Focus: etwas “aktiver”, aber immer clean */
.lm-hero__volBox:hover{
  background: rgba(255, 255, 255, .56);
  box-shadow: var(--lm-shadow);
}

.lm-hero__volBox:focus-visible{
  outline: none;
  box-shadow: 0 0 0 4px rgba(143, 180, 205, .24), var(--lm-shadow);
  border-color: rgba(143, 180, 205, .55);
}

/* Hidden Range (Fallback): wirklich unsichtbar, kein komischer Balken mehr */
.lm-hero__volRange--hidden{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  appearance: none;
}

/* ---------- Hero Content ---------- */
.lm-hero__content{
  position: relative;
  padding: 44px 0 26px;
}

.lm-eyebrow{
  margin: 0 0 10px 0;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .88);
}

.lm-h1{
  margin: 0 0 12px 0;
  font-size: clamp(28px, 3.2vw, 46px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--lm-ink);
}

.lm-lead{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(71, 85, 105, .95);
  max-width: 64ch;
}

.lm-ctaRow{
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.lm-trustRow{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.lm-trust{
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: var(--lm-radius);
  padding: 14px 14px;
  box-shadow: var(--lm-shadow-soft);
}

.lm-trust__title{
  font-weight: 900;
  font-size: 14px;
  color: var(--lm-ink);
}

.lm-trust__text{
  margin-top: 6px;
  font-size: 13px;
  line-height: 1.6;
  color: rgba(71, 85, 105, .92);
}

/* ---------- Sections ---------- */
.lm-section{
  padding: 56px 0;
}

.lm-section--alt{
  background: var(--lm-surface-2);
  border-top: 1px solid rgba(2, 6, 23, .06);
  border-bottom: 1px solid rgba(2, 6, 23, .06);
}

.lm-sectionHead{
  margin-bottom: 22px;
}

.lm-h2{
  margin: 0 0 10px 0;
  font-size: clamp(22px, 2.2vw, 32px);
  letter-spacing: -0.01em;
  color: var(--lm-ink);
}

.lm-h3{
  margin: 0 0 8px 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--lm-ink);
}

.lm-text{
  margin: 0 0 14px 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(71, 85, 105, .95);
}

.lm-textSmall{
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(71, 85, 105, .92);
}

.lm-grid2{
  display: grid;
  grid-template-columns: 1.3fr .9fr;
  gap: 22px;
  align-items: start;
}

/* ---------- Cards ---------- */
.lm-card{
  background: var(--lm-surface);
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: var(--lm-radius);
  padding: 18px;
  box-shadow: var(--lm-shadow);
}

.lm-card--profile{
  position: sticky;
  top: 92px;
}

.lm-card__badge{
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(143, 180, 205, .16);
  border: 1px solid rgba(143, 180, 205, .30);
  color: rgba(23, 50, 74, .92);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.lm-card__actions{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

/* Mini facts */
.lm-miniFacts{
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 18px;
}

.lm-miniFacts__item{
  background: rgba(255, 255, 255, .70);
  border: 1px solid rgba(2, 6, 23, .08);
  border-radius: var(--lm-radius-sm);
  padding: 12px 12px;
}

.lm-miniFacts__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .85);
}

.lm-miniFacts__value{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--lm-ink);
}

/* ---------- Portfolio Grid ---------- */
.lm-portfolioGrid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.lm-shotCard{
  border-radius: var(--lm-radius);
  overflow: hidden;
  border: 1px solid rgba(2, 6, 23, .10);
  background: var(--lm-surface);
  box-shadow: var(--lm-shadow-soft);
  transition: transform .18s ease, box-shadow .18s ease;
}

.lm-shotCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--lm-shadow);
}

.lm-shotCard__media{
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: rgba(143, 180, 205, .16);
}

.lm-shotCard__body{
  padding: 12px 12px 14px;
}

.lm-shotCard__title{
  font-weight: 900;
  color: var(--lm-ink);
  font-size: 14px;
}

.lm-shotCard__meta{
  margin-top: 6px;
  font-size: 12px;
  color: rgba(71, 85, 105, .88);
  letter-spacing: .02em;
}

/* ---------- Pricing / Workflow Cards ---------- */
.lm-pricingGrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.lm-priceCard{
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: var(--lm-radius);
  padding: 18px;
  box-shadow: var(--lm-shadow-soft);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Wedding-ish shimmer / soft bokeh blobs */
.lm-priceCard::before{
  content:"";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lm-blush-strong), transparent 60%);
  opacity: .55;
  pointer-events: none;
  filter: blur(6px);
}

.lm-priceCard::after{
  content:"";
  position: absolute;
  inset: auto auto -60px -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, var(--lm-lilac-strong), transparent 60%);
  opacity: .45;
  pointer-events: none;
  filter: blur(8px);
}

.lm-priceCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--lm-shadow);
  border-color: rgba(143, 180, 205, .35);
}

.lm-priceCard--featured{
  border-color: rgba(143, 180, 205, .60);
  box-shadow: 0 26px 58px rgba(143, 180, 205, .24);
  transform: translateY(-2px);
}

.lm-priceCard__ribbon{
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 8px 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.64));
  border: 1px solid rgba(2, 6, 23, .10);
  font-weight: 1000;
  font-size: 12px;
  color: rgba(23, 50, 74, .95);
  box-shadow: var(--lm-shadow-soft);
}

.lm-priceCard__top{
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.lm-priceCard__price{
  margin-top: 6px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -0.02em;
  color: var(--lm-ink);
}

.lm-list{
  margin: 0 0 14px 0;
  padding-left: 18px;
  color: rgba(71, 85, 105, .95);
  line-height: 1.8;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.lm-note{
  margin-top: 18px;
  padding: 14px 14px;
  border-radius: var(--lm-radius);
  background: rgba(255, 255, 255, .74);
  border: 1px solid rgba(2, 6, 23, .10);
  box-shadow: var(--lm-shadow-soft);
  color: rgba(71, 85, 105, .95);
  font-size: 13px;
  line-height: 1.7;
}

/* ---------- Flow / Timeline Styling for Experience ---------- */
.lm-section--flow{
  position: relative;
  background:
    radial-gradient(900px 480px at 20% 10%, rgba(238, 209, 220, .28), transparent 60%),
    radial-gradient(820px 420px at 78% 18%, rgba(210, 204, 240, .26), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.0) 0%, rgba(255,255,255,.0) 100%);
}

.lm-flow{
  position: relative;
}

.lm-flow__rail{
  position: absolute;
  left: 50%;
  top: 18px;
  bottom: 18px;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent 0%, rgba(143, 180, 205, .35) 18%, rgba(143, 180, 205, .20) 82%, transparent 100%);
  pointer-events: none;
  opacity: .55;
}

.lm-pricingGrid--flow{
  /* 4 cards: auf Desktop 4-spaltig, damit es wie “Ablauf” wirkt */
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lm-stepCard{
  /* kleine “Pin”-Marke, die zur Rail zeigt */
}

.lm-stepCard .lm-priceCard__ribbon{
  background: linear-gradient(135deg, var(--lm-accent-2), var(--lm-accent));
  color: rgba(23, 50, 74, .95);
  box-shadow: 0 14px 30px rgba(143, 180, 205, .22);
}

.lm-stepCard::marker{ content: ""; }

/* Punkt zur Timeline (nur Desktop sichtbar) */
@media (min-width: 981px){
  .lm-stepCard{
    position: relative;
  }
  .lm-stepCard .lm-priceCard__ribbon{
    z-index: 3;
  }
  .lm-stepCard::before{
    content:"";
    position: absolute;
    top: 24px;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 999px;
    transform: translateX(-50%);
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(143, 180, 205, .55);
    box-shadow: 0 14px 24px rgba(2,6,23,.10);
    z-index: 2;
  }
}

/* ---------- Contact ---------- */
.lm-contactCards{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.lm-contactCard{
  background: rgba(255, 255, 255, .72);
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: var(--lm-radius);
  padding: 12px 12px;
  box-shadow: var(--lm-shadow-soft);
}

.lm-contactCard__label{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .85);
}

.lm-contactCard__value{
  margin-top: 6px;
  font-size: 14px;
  font-weight: 900;
  color: var(--lm-ink);
}

/* Form */
.lm-form{
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(2, 6, 23, .10);
  border-radius: var(--lm-radius);
  padding: 18px;
  box-shadow: var(--lm-shadow);
  backdrop-filter: blur(12px);
}

.lm-form__row{
  margin-bottom: 12px;
}

.lm-form__row--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.lm-label{
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(71, 85, 105, .85);
  margin-bottom: 6px;
}

.lm-input,
.lm-textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(2, 6, 23, .12);
  background: rgba(246, 248, 251, .55);
  padding: 12px 12px;
  outline: none;
  color: var(--lm-ink);
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.lm-input:focus,
.lm-textarea:focus{
  border-color: rgba(143, 180, 205, .65);
  box-shadow: 0 0 0 4px rgba(143, 180, 205, .22);
  background: rgba(255, 255, 255, .85);
}

.lm-textarea{ resize: vertical; }

.lm-form__hint{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(71, 85, 105, .85);
  line-height: 1.6;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .lm-grid2{ grid-template-columns: 1fr; }
  .lm-card--profile{ position: static; }
  .lm-portfolioGrid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .lm-pricingGrid{ grid-template-columns: 1fr; }
  .lm-pricingGrid--flow{ grid-template-columns: 1fr; }
  .lm-flow__rail{ display: none; }

  .lm-trustRow{ grid-template-columns: 1fr; }

  /* Header-Logo overhang ist mobil kleiner, daher weniger top padding nötig */
  .lm-hero__videoWrap{ padding-top: 36px; }
  .lm-hero__video{ height: calc(100% - 36px); }

  .lm-hero__controls{
    right: 22px;
    bottom: 14px;
    gap: 9px;
  }

  .lm-hero__ctrlBtn{
    width: 42px;
    height: 42px;
  }

  .lm-hero__volBox{
    width: 42px;
    height: 128px;
  }
}

@media (max-width: 520px){
  .lm-container{ width: min(var(--lm-container), calc(100% - 28px)); }

  .lm-hero__videoWrap{
    height: clamp(360px, 56vh, 520px);
    padding-top: 28px;
  }
  .lm-hero__video{ height: calc(100% - 28px); }

  .lm-ctaRow{ flex-direction: column; align-items: stretch; }

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

  .lm-portfolioGrid{ grid-template-columns: 1fr; }

  .lm-hero__overlayInner{
    width: calc(100% - 28px);
    justify-content: center;
  }

  .lm-hero__overlayText{ align-items: center; text-align: center; }

  .lm-hero__controls{
    right: 18px;
    bottom: 12px;
    gap: 8px;
  }

  .lm-hero__ctrlBtn{
    width: 40px;
    height: 40px;
  }

  .lm-hero__volBox{
    width: 40px;
    height: 118px;
  }

  .lm-hero__volBox::before{
    inset: 7px;
  }

  .lm-hero__volFill{
    left: 7px;
    right: 7px;
    bottom: 7px;
  }
}
