.woaw-light-page {
  --light-bg: #050503;
  --light-panel: rgba(12, 12, 10, .78);
  --light-line: rgba(245, 244, 240, .15);
  --light-text: #f5f4f0;
  --light-muted: rgba(245, 244, 240, .62);
  --light-soft: rgba(245, 244, 240, .08);
  --light-accent: #d7ff2f;
  margin: 0;
  color: var(--light-text);
  background:
    radial-gradient(circle at 72% 5%, rgba(215, 255, 47, .13), transparent 28%),
    radial-gradient(circle at 8% 30%, rgba(119, 167, 255, .08), transparent 30%),
    linear-gradient(180deg, #050503 0%, #090907 48%, #050503 100%);
  font-family: var(--font-body);
  overflow-x: hidden;
}

.woaw-light-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(245, 244, 240, .025) 1px, transparent 1px);
  background-size: 100% 64px;
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 84%, transparent);
}

.woaw-light-page a {
  color: inherit;
  text-decoration: none;
}

.light-shell {
  width: min(1360px, calc(100% - 48px));
  margin-inline: auto;
}

.woaw-light-page .light-nav {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 1000;
  background: transparent !important;
  border: 0 !important;
  backdrop-filter: none !important;
}

.woaw-light-page .container.nav-inner {
  width: min(1120px, calc(100% - 40px));
  min-height: 60px;
  padding: 0 10px 0 22px;
  border: 1px solid var(--light-line);
  border-radius: 999px;
  background: rgba(8, 8, 7, .78);
  box-shadow: 0 18px 54px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.woaw-light-page .woaw-logo-wordmark {
  display: block;
  width: clamp(104px, 8vw, 136px);
  height: auto;
  max-height: 38px;
  object-fit: contain;
}

.woaw-light-page .footer-logo-wordmark {
  width: 128px;
  max-height: 42px;
}

.woaw-light-page .links {
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woaw-light-page .links a,
.woaw-light-page .light-solutions button,
.light-selection-link {
  border: 0;
  background: transparent;
  color: rgba(245, 244, 240, .78);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
}

.woaw-light-page .links a:hover,
.woaw-light-page .light-solutions button:hover,
.light-selection-link:hover {
  color: var(--light-text);
}

.woaw-light-page .light-selection-link {
  position: relative;
  width: 42px;
  height: 42px;
  min-width: 42px;
  padding: 0;
  border: 1px solid rgba(245, 244, 240, .16);
  border-radius: 999px;
  background: rgba(5, 5, 3, .44);
  color: transparent;
  overflow: visible;
}

.woaw-light-page .light-selection-link::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 17px;
  height: 13px;
  border: 2px solid rgba(245, 244, 240, .88);
  border-top: 0;
  border-radius: 2px 2px 5px 5px;
}

.woaw-light-page .light-selection-link::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 9px;
  width: 12px;
  height: 10px;
  border: 2px solid rgba(245, 244, 240, .88);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
}

.woaw-light-page .light-selection-link .selection-count {
  position: absolute;
  right: -3px;
  top: -3px;
  min-width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--light-accent);
  color: #080808;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.woaw-light-page .links a:focus-visible,
.woaw-light-page .light-solutions button:focus-visible,
.light-selection-link:focus-visible,
.light-contact-link:focus-visible,
.light-mobile-button:focus-visible,
.light-mobile-panel a:focus-visible {
  outline: 2px solid rgba(215, 255, 47, .9);
  outline-offset: 4px;
}

.light-solutions {
  position: relative;
}

.light-solutions button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 0;
  cursor: pointer;
}

.light-solutions-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -22px;
  min-width: 310px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid rgba(245, 244, 240, .14);
  border-radius: 20px;
  background: rgba(9, 9, 8, .94);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .46);
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.light-solutions:hover .light-solutions-menu,
.light-solutions:focus-within .light-solutions-menu,
.light-solutions.is-open .light-solutions-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.light-solutions-menu a {
  display: grid;
  gap: 4px;
  padding: 14px 15px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: rgba(245, 244, 240, .78);
}

.light-solutions-menu a:hover {
  border-color: rgba(245, 244, 240, .11);
  background: rgba(245, 244, 240, .055);
  color: var(--light-accent);
}

.light-solutions-menu span {
  font-size: 13px;
  font-weight: 850;
}

.light-solutions-menu small {
  color: rgba(245, 244, 240, .5);
  font-size: 12px;
  line-height: 1.35;
}

.light-solutions-menu .is-priority {
  background: linear-gradient(90deg, rgba(215, 255, 47, .08), rgba(245, 244, 240, .025));
  border-color: rgba(215, 255, 47, .08);
}

.woaw-light-page .actions {
  display: flex !important;
  align-items: center;
  gap: 14px;
  margin-left: auto;
}

.light-selection-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.selection-count {
  display: inline-grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(245, 244, 240, .16);
  color: rgba(245, 244, 240, .74);
  font-size: 10px;
}

.light-contact-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: var(--light-accent) !important;
  color: #080808 !important;
  box-shadow: 0 0 18px rgba(215, 255, 47, .18) !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.light-contact-link:hover {
  background: #e4ff5a !important;
  transform: translateY(-1px);
}

.woaw-light-page header.nav .actions .light-contact-link,
.woaw-light-page header.nav .actions > .btn-lime.light-contact-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 36px !important;
  height: 36px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-size: 11px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  box-shadow: 0 0 18px rgba(215, 255, 47, .18) !important;
}

.light-mobile-button,
.light-mobile-panel {
  display: none;
}

.light-hero {
  position: relative;
  padding: 126px 0 72px;
  overflow: hidden;
}

.light-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 3, .98) 0%, rgba(5, 5, 3, .72) 42%, rgba(5, 5, 3, .24) 100%);
}

.light-hero-grid {
  min-height: 500px;
  display: grid;
  grid-template-columns: minmax(380px, 1.05fr) minmax(360px, .82fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.light-hero-copy {
  max-width: 620px;
}

.light-kicker {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: 20px;
  letter-spacing: .03em;
}

.light-kicker span,
.light-section-head h2 span {
  color: var(--light-accent);
}

.light-hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6.2vw, 88px);
  font-weight: 700;
  line-height: .9;
  letter-spacing: 0;
}

.light-hero h1 span,
.light-final h2 span {
  display: block;
  color: var(--light-accent);
  font-style: italic;
  font-weight: 500;
}

.light-lead {
  max-width: 520px;
  margin: 24px 0 0;
  color: rgba(245, 244, 240, .82);
  font-size: 17px;
  line-height: 1.55;
}

.light-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.light-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

.light-btn-primary {
  background: var(--light-accent);
  color: #070806 !important;
  box-shadow: 0 20px 48px rgba(215, 255, 47, .18);
}

.light-btn-ghost {
  border: 1px solid rgba(245, 244, 240, .28);
  background: rgba(5, 5, 3, .35);
  color: var(--light-text);
}

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

.light-hero-media {
  position: relative;
  min-height: 0;
  height: clamp(320px, 38vw, 440px);
  max-width: 520px;
  margin: 0;
  justify-self: end;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(245, 244, 240, .1);
  background: #0b0b08;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .42);
}

.light-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center 48%;
  display: block;
  filter: saturate(1.08) contrast(1.05);
}

.light-hero-media::after,
.light-project-card::after,
.light-final::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 3, .68), transparent 44%);
}

.light-hero-media figcaption {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: rgba(245, 244, 240, .58);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.light-families,
.light-projects,
.light-proof,
.light-process,
.light-final {
  padding: 34px 0;
}

.light-families {
  padding-top: 56px;
  scroll-margin-top: 116px;
  background: #f3efe5;
  color: #11110d;
}

.light-families h2,
.light-process h2 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  line-height: 1;
}

.light-family-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.light-family-head h2 {
  margin: 0;
}

.light-family-collection {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(5, 5, 3, .18);
  border-radius: 999px;
  color: #11110d;
  background: rgba(5, 5, 3, .045);
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease;
}

.light-family-collection:hover {
  transform: translateY(-1px);
  border-color: rgba(5, 5, 3, .32);
  color: #f5f4f0;
  background: #11110d;
}

.light-family-collection span {
  color: var(--light-accent);
  font-size: 15px;
}

.light-family-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.light-family-band a {
  position: relative;
  min-height: 320px;
  display: grid;
  grid-template-rows: minmax(175px, 1fr) auto auto;
  align-content: end;
  gap: 8px;
  padding: 18px;
  border: 1px solid rgba(5, 5, 3, .14);
  border-radius: 18px;
  overflow: hidden;
  background: #11110d;
  box-shadow: 0 16px 44px rgba(5, 5, 3, .12);
}

.light-family-band a:hover {
  background: #11110d;
  transform: translateY(-2px);
}

.light-family-band a.is-priority::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-top: 1px solid rgba(215, 255, 47, .44);
  pointer-events: none;
}

.light-family-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  transition: transform .45s ease, opacity .45s ease;
}

.light-family-band a:hover img {
  transform: scale(1.035);
  opacity: .84;
}

.light-family-band a::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(5, 5, 3, .92) 0%, rgba(5, 5, 3, .5) 48%, rgba(5, 5, 3, .04) 100%);
}

.light-family-band span {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--light-text);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.05;
}

.light-family-band small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 7px;
  color: rgba(245, 244, 240, .78);
  font-size: 14px;
  line-height: 1.35;
}

.light-family-band b {
  position: absolute;
  right: 16px;
  top: 16px;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 244, 240, .24);
  border-radius: 999px;
  color: var(--light-accent);
  background: rgba(5, 5, 3, .38);
  font-size: 22px;
  font-weight: 400;
}

.light-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}

.light-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
  line-height: 1;
}

.light-section-head a {
  color: rgba(245, 244, 240, .78);
  font-size: 13px;
  font-weight: 800;
}

.light-project-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 14px;
}

.light-project-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border: 1px solid rgba(245, 244, 240, .12);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a08;
}

.light-project-card-wide {
  grid-column: 1;
  grid-row: span 2;
  min-height: 500px;
}

.light-project-card:nth-child(5) {
  grid-column: auto;
  min-height: 250px;
}

.light-project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.light-project-card:hover img {
  transform: scale(1.035);
}

.light-project-card span,
.light-project-card strong,
.light-project-card i {
  position: relative;
  z-index: 1;
}

.light-project-card span {
  color: rgba(245, 244, 240, .72);
  font-size: 13px;
  font-weight: 700;
}

.light-project-card strong {
  max-width: 290px;
  margin-top: 5px;
  font-size: 17px;
  line-height: 1.18;
}

.light-project-card-wide strong {
  max-width: 390px;
  font-size: 25px;
  line-height: 1.05;
}

.light-project-card i {
  position: absolute;
  right: 16px;
  bottom: 16px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(245, 244, 240, .28);
  border-radius: 999px;
  font-style: normal;
}

.light-proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  color: var(--light-text);
}

.light-proof-band article {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 26px 32px;
  border: 1px solid rgba(5, 5, 3, .16);
  border-radius: 18px;
  background: #090a08;
  box-shadow: 0 18px 44px rgba(5, 5, 3, .12);
}

.light-proof-band article > span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--light-accent);
  font-size: 32px;
  line-height: 1;
}

.light-proof-band h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: var(--light-text);
}

.light-proof-band p {
  margin: 3px 0 0;
  color: rgba(245, 244, 240, .68);
  font-size: 14px;
  line-height: 1.5;
}

.light-proof,
.light-process {
  background: #f3efe5;
  color: #11110d;
}

.light-process h2 {
  color: #11110d;
}

.light-process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 18px;
  list-style: none;
  border: 1px solid rgba(5, 5, 3, .16);
  border-radius: 20px;
  background: rgba(255, 252, 244, .72);
}

.light-process-line li {
  position: relative;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  padding: 12px 12px 22px;
  border: 1px solid rgba(5, 5, 3, .1);
  border-radius: 16px;
  background: #090a08;
  color: var(--light-text);
  overflow: hidden;
}

.light-process-line li:last-child {
  border-right: 1px solid rgba(5, 5, 3, .1);
}

.light-process-line li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -18px;
  top: 50%;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #f3efe5;
  color: #11110d;
  font-size: 14px;
  transform: translateY(-50%);
}

.light-process-line img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
  margin-bottom: -4px;
  border-radius: 10px 10px 0 0;
  background: rgba(245, 244, 240, .08);
  filter: saturate(.96) contrast(1.05);
  opacity: .86;
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, .78) 74%, transparent 100%);
}

.light-process-line span {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: -6px;
  margin-bottom: 8px;
  padding-inline: 6px;
  color: var(--light-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
}

.light-process-line strong {
  display: block;
  position: relative;
  z-index: 1;
  padding-inline: 6px;
  font-size: 15px;
  line-height: 1.2;
}

.light-process-line small {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 8px;
  padding-inline: 6px;
  color: rgba(245, 244, 240, .68);
  font-size: 13px;
  line-height: 1.35;
}

.light-final {
  position: relative;
  margin: 30px 0 70px;
}

.light-signature-link {
  margin: 30px 0 0;
}

.light-signature-grid {
  min-height: 188px;
  padding: 30px 36px;
  border: 1px solid rgba(215, 255, 47, .22);
  border-radius: 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  background:
    linear-gradient(135deg, rgba(215, 255, 47, .1), rgba(200, 239, 255, .055)),
    #050503;
}

.light-signature-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--light-accent);
  font-family: var(--font-mono, monospace);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.light-signature-grid h2 {
  max-width: 680px;
  margin: 0;
  color: #f5f4f0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: .98;
}

.light-signature-grid p {
  max-width: 780px;
  margin: 14px 0 0;
  color: rgba(245, 244, 240, .68);
  font-size: 15px;
  line-height: 1.55;
}

.light-final-grid {
  position: relative;
  min-height: 170px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 34px 54px;
  border: 1px solid rgba(245, 244, 240, .18);
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(215, 255, 47, .14), rgba(5, 5, 3, .36) 42%, rgba(5, 5, 3, .88)),
    url("../assets/works/light-triangles-led-bar-woaw.jpg") center right / 58% auto no-repeat;
}

.light-final h2 {
  position: relative;
  z-index: 1;
  max-width: 710px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 3.8vw, 52px);
  line-height: .98;
}

.light-final p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: rgba(245, 244, 240, .74);
}

.light-final .light-btn {
  position: relative;
  z-index: 1;
}

.woaw-light-page .footer {
  background: #050503;
}

@media (max-width: 1180px) {
  .light-family-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1100px) {
  .woaw-light-page .container.nav-inner {
    position: relative;
    width: calc(100% - 28px) !important;
    min-height: 62px;
    padding: 0 10px 0 18px !important;
    justify-content: flex-start !important;
  }

  .woaw-light-page .links,
  .woaw-light-page .light-contact-link {
    display: none !important;
  }

  .woaw-light-page .actions {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    gap: 8px;
  }

  .light-selection-link {
    min-height: 40px;
    padding: 0 11px;
    border: 1px solid rgba(245, 244, 240, .16);
    border-radius: 999px;
    font-size: 11px;
  }

  .light-selection-link .selection-count {
    display: none;
  }

  .light-mobile-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    border: 1px solid rgba(245, 244, 240, .16);
    border-radius: 999px;
    background: rgba(245, 244, 240, .045);
    color: var(--light-text);
  }

  .light-mobile-button span {
    display: block;
    width: 16px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
  }

  .light-mobile-panel {
    position: fixed;
    top: 88px;
    left: 14px;
    right: 14px;
    z-index: 990;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(245, 244, 240, .14);
    border-radius: 24px;
    background: rgba(6, 6, 5, .96);
    box-shadow: 0 24px 76px rgba(0, 0, 0, .52);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  }

  .light-mobile-panel.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .light-mobile-group {
    display: grid;
    gap: 4px;
    padding: 4px 0 8px;
    border-bottom: 1px solid rgba(245, 244, 240, .09);
  }

  .light-mobile-group p {
    margin: 0 0 5px;
    color: rgba(245, 244, 240, .42);
    font-size: 10px;
    font-weight: 850;
    letter-spacing: .12em;
    text-transform: uppercase;
  }

  .light-mobile-panel a {
    display: grid;
    gap: 3px;
    min-height: 46px;
    padding: 12px 2px;
    border-bottom: 1px solid rgba(245, 244, 240, .08);
    color: rgba(245, 244, 240, .86);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 780;
    letter-spacing: 0;
    text-transform: none;
  }

  .light-mobile-panel small {
    color: rgba(245, 244, 240, .48);
    font-size: 12px;
    line-height: 1.35;
  }

  .light-mobile-secondary {
    color: rgba(245, 244, 240, .5) !important;
  }

  .light-mobile-cta {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    margin-top: 10px;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 999px;
    background: var(--light-accent);
    color: #080808 !important;
    font-size: 13px !important;
    font-weight: 900 !important;
  }

  .light-hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .light-hero-media {
    height: clamp(340px, 58vw, 430px);
    max-width: none;
    justify-self: stretch;
  }

}

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

  .woaw-light-page .light-nav {
    top: 12px;
  }

  .woaw-light-page .container.nav-inner {
    width: calc(100% - 20px) !important;
    min-height: 58px;
    padding: 0 8px 0 14px !important;
  }

  .woaw-light-page .woaw-logo-wordmark {
    width: 112px;
    max-height: 34px;
  }

  .light-selection-link {
    min-height: 38px;
    max-width: 104px;
    padding: 0 9px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 10px;
  }

  .light-mobile-button {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .light-hero {
    padding-top: 96px;
  }

  .light-hero-grid {
    min-height: auto;
  }

  .light-hero h1 {
    max-width: 100%;
    font-size: clamp(48px, 13.5vw, 62px);
    line-height: .92;
    overflow-wrap: normal;
  }

  .light-lead {
    max-width: 100%;
    font-size: 15px;
  }

  .light-actions {
    display: grid;
  }

  .light-btn {
    width: 100%;
  }

  .light-hero-media {
    height: clamp(300px, 84vw, 360px);
    min-height: 0;
    border-radius: 20px;
  }

  .light-families,
  .light-projects,
  .light-proof,
  .light-process,
  .light-final {
    padding: 28px 0;
  }

  .light-family-band a {
    min-height: 300px;
    padding: 18px;
  }

  .light-family-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .light-family-collection {
    min-height: 38px;
    padding: 0 16px;
  }

  .light-family-band span {
    font-size: 20px;
  }

  .light-project-grid {
    grid-template-columns: 1fr;
  }

  .light-project-card-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 260px;
  }

  .light-project-card {
    min-height: 260px;
  }

  .light-section-head {
    display: block;
  }

  .light-section-head a {
    display: inline-flex;
    margin-top: 12px;
  }

  .light-proof-band {
    grid-template-columns: 1fr;
    gap: 12px;
    border-radius: 18px;
  }

  .light-proof-band article {
    grid-template-columns: 46px 1fr;
    padding: 22px 18px;
    border-right: 0;
  }

  .light-proof-band article > span {
    width: 34px;
    height: 34px;
    font-size: 27px;
  }

  .light-proof-band h2 {
    font-size: 24px;
    line-height: 1.05;
  }

  .light-proof-band p {
    max-width: 260px;
    font-size: 14px;
    line-height: 1.42;
  }

  .light-process-line {
    grid-template-columns: 1fr;
    padding: 12px;
  }

  .light-process-line li {
    min-height: auto;
    padding: 12px 12px 20px;
  }

  .light-process-line img {
    aspect-ratio: 1.9;
    margin-bottom: -4px;
  }

  .light-process-line li:not(:last-child)::after {
    left: 50%;
    right: auto;
    top: auto;
    bottom: -18px;
    transform: translateX(-50%) rotate(90deg);
  }

  .light-final {
    margin-bottom: 48px;
  }

  .light-final-grid {
    grid-template-columns: 1fr;
    min-height: 360px;
    align-content: end;
    padding: 24px;
    background:
      linear-gradient(to top, rgba(5, 5, 3, .92), rgba(5, 5, 3, .28)),
      url("../assets/works/light-triangles-led-bar-woaw.jpg") center / cover no-repeat;
  }
}

@media (max-width: 760px) {
  .woaw-light-page,
  .woaw-light-page main,
  .woaw-light-page section,
  .light-shell {
    max-width: 100%;
    overflow-x: hidden;
  }

  .woaw-light-page header.nav .actions {
    display: flex !important;
    position: static !important;
    transform: none !important;
    grid-column: 3;
    justify-self: end;
  }

  .woaw-light-page header.nav .actions .light-contact-link,
  .woaw-light-page header.nav .actions > .btn-lime {
    display: none !important;
  }

  .woaw-light-page .light-selection-link {
    display: inline-flex !important;
  }

  .woaw-light-page .light-mobile-button {
    display: inline-flex !important;
    position: static !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .light-signature-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .light-signature-grid {
    padding: 24px;
  }

  .light-signature-grid .light-btn {
    width: 100%;
  }
}

@media (max-width: 1100px) {
  .woaw-light-page header.nav .actions .light-contact-link,
  .woaw-light-page header.nav .actions > .btn-lime.light-contact-link {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .woaw-light-page {
    padding-bottom: 78px !important;
  }

  .woaw-light-page .bottom-dock {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: calc(9px + env(safe-area-inset-bottom)) !important;
    z-index: 2147482000 !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 4px !important;
    width: auto !important;
    max-width: none !important;
    padding: 6px !important;
    border: 1px solid rgba(245, 244, 240, .16) !important;
    border-radius: 24px !important;
    background: rgba(7, 7, 6, .88) !important;
    box-shadow: 0 18px 58px rgba(0, 0, 0, .44) !important;
    backdrop-filter: blur(18px) !important;
    transform: none !important;
    overflow: hidden !important;
  }

  .woaw-light-page .bottom-dock a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding: 0 4px !important;
    border-radius: 18px !important;
    color: rgba(245, 244, 240, .82) !important;
    font-family: var(--font-body) !important;
    font-size: clamp(7px, 2.1vw, 10px) !important;
    font-weight: 850 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    text-decoration: none !important;
    white-space: nowrap !important;
  }

  .woaw-light-page .bottom-dock a.active {
    background: var(--light-accent) !important;
    color: #080808 !important;
  }
}

@media (max-width: 760px) {
  .woaw-light-page .container.nav-inner {
    display: grid !important;
    grid-template-columns: auto 1fr auto !important;
    align-items: center !important;
    justify-content: stretch !important;
    gap: 10px !important;
  }

  .woaw-light-page .light-brand {
    grid-column: 1;
  }

  .woaw-light-page .actions {
    grid-column: 3;
    display: flex !important;
    align-items: center !important;
    justify-content: end !important;
    gap: 7px !important;
    min-width: 0;
  }

  .woaw-light-page .light-selection-link {
    position: static !important;
    transform: none !important;
    max-width: 96px;
    min-width: 0;
  }
}
