:root {
    --lgw-ink: #111315;
    --lgw-ink-soft: #1a1d1e;
    --lgw-graphite: #25292a;
    --lgw-paper: #f2f0e9;
    --lgw-paper-deep: #e4e0d5;
    --lgw-white: #fffefa;
    --lgw-yellow: #f5d000;
    --lgw-yellow-soft: #ffe45a;
    --lgw-moss: #596b58;
    --lgw-steel: #6e7b7c;
    --lgw-text: #2e3334;
    --lgw-muted: #62696a;
    --lgw-line: rgba(17, 19, 21, 0.16);
    --lgw-line-light: rgba(255, 255, 255, 0.15);
    --lgw-head: "Archivo", Arial, sans-serif;
    --lgw-body: "Manrope", Arial, sans-serif;
    --lgw-ease: cubic-bezier(0.16, 1, 0.3, 1);
    --lgw-ease-snap: cubic-bezier(0.34, 1.56, 0.64, 1);
    --lgw-radius: 22px;
    --lgw-shadow: 0 24px 70px rgba(17, 19, 21, 0.14);
    --lgw-wrap: min(1460px, calc(100% - 72px));
    --lgw-narrow: min(880px, calc(100% - 48px));
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 128px;
    background: var(--lgw-paper);
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--lgw-paper);
    color: var(--lgw-text);
    font-family: var(--lgw-body);
    font-size: 16px;
    line-height: 1.72;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.media-open {
    overflow: hidden;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.2em;
}

p,
h1,
h2,
h3,
h4,
figure,
blockquote {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-stretch: condensed;
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

::selection {
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
}

:focus-visible {
    outline: 3px solid var(--lgw-yellow);
    outline-offset: 4px;
}

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.lgw-wrap {
    width: var(--lgw-wrap);
    margin-inline: auto;
}

.lgw-main {
    min-height: 55vh;
}

.lgw-skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10000;
    padding: 12px 18px;
    transform: translateY(-140%);
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font-weight: 800;
    transition: transform 180ms ease;
}

.lgw-skip-link:focus {
    transform: translateY(0);
}

.lgw-scroll-progress {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1001;
    height: 3px;
    pointer-events: none;
}

.lgw-scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    background: var(--lgw-yellow);
}

/* Header */
.lgw-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    color: var(--lgw-white);
    transition: background 320ms ease, box-shadow 320ms ease, color 320ms ease;
}

.lgw-header__utility {
    height: 30px;
    background: #080909;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.13em;
    line-height: 30px;
    text-transform: uppercase;
}

.lgw-header__utility .lgw-wrap {
    display: flex;
    justify-content: flex-end;
    gap: 26px;
}

.lgw-header__utility span:first-child {
    margin-right: auto;
}

.lgw-header__utility a {
    text-decoration: none;
}

.lgw-header__inner {
    display: grid;
    grid-template-columns: minmax(170px, 240px) 1fr auto;
    align-items: center;
    gap: 34px;
    width: var(--lgw-wrap);
    min-height: 84px;
    margin-inline: auto;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    transition: min-height 300ms var(--lgw-ease), border-color 300ms ease;
}

body:not(.lgw-front) .lgw-header {
    color: var(--lgw-ink);
}

body:not(.lgw-front) .lgw-header__inner {
    border-color: var(--lgw-line);
}

body:not(.lgw-front) .lgw-header:not(.is-scrolled) {
    background: rgba(242, 240, 233, 0.94);
    backdrop-filter: blur(16px);
}

.lgw-header.is-scrolled {
    background: rgba(242, 240, 233, 0.95);
    color: var(--lgw-ink);
    box-shadow: 0 16px 50px rgba(17, 19, 21, 0.09);
    backdrop-filter: blur(18px);
}

.lgw-header.is-scrolled .lgw-header__inner {
    min-height: 72px;
    border-color: transparent;
}

.lgw-logo {
    display: inline-flex;
    width: min(210px, 100%);
    align-items: center;
    text-decoration: none;
}

.lgw-logo img {
    width: 100%;
    height: auto;
}

.lgw-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 2.2vw, 38px);
}

.lgw-nav a {
    position: relative;
    padding-block: 28px;
    color: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.lgw-nav a::after {
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 0;
    height: 2px;
    content: "";
    transform: scaleX(0);
    transform-origin: right;
    background: var(--lgw-yellow);
    transition: transform 280ms var(--lgw-ease);
}

.lgw-nav a > i {
    display: none;
}

.lgw-nav a:hover::after,
.lgw-nav a[aria-current="page"]::after {
    transform: scaleX(1);
    transform-origin: left;
}

.lgw-header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lgw-header__phone {
    display: flex;
    flex-direction: column;
    color: inherit;
    font-family: var(--lgw-head);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.1;
    text-decoration: none;
}

.lgw-header__phone span {
    margin-bottom: 4px;
    color: currentColor;
    font-family: var(--lgw-body);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    opacity: 0.58;
    text-transform: uppercase;
}

.lgw-header__quote {
    display: inline-flex;
    min-height: 48px;
    padding: 0 18px;
    align-items: center;
    gap: 14px;
    border-radius: 100px;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 250ms var(--lgw-ease), background 250ms ease;
}

.lgw-header__quote:hover {
    transform: translateY(-3px);
    background: var(--lgw-yellow-soft);
}

.lgw-menu-toggle {
    display: none;
    width: 50px;
    height: 50px;
    padding: 0;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.lgw-menu-toggle__bars,
.lgw-menu-toggle__bars::before,
.lgw-menu-toggle__bars::after {
    display: block;
    width: 20px;
    height: 2px;
    margin: auto;
    background: currentColor;
    content: "";
}

.lgw-menu-toggle__bars::before {
    transform: translateY(-6px);
}

.lgw-menu-toggle__bars::after {
    transform: translateY(4px);
}

.lgw-mobile-menu[hidden] {
    display: none;
}

.lgw-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 1100;
    overflow: auto;
    background: rgba(7, 8, 8, 0.72);
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(12px);
    transition: opacity 300ms ease;
}

.lgw-mobile-menu.is-active {
    opacity: 1;
    pointer-events: auto;
}

.lgw-mobile-menu__panel {
    width: min(620px, 100%);
    min-height: 100%;
    margin-left: auto;
    padding: 28px clamp(24px, 6vw, 56px) 48px;
    background: var(--lgw-ink);
    color: var(--lgw-white);
    transform: translateX(100%);
    transition: transform 440ms var(--lgw-ease);
}

.lgw-mobile-menu.is-active .lgw-mobile-menu__panel {
    transform: translateX(0);
}

.lgw-mobile-menu__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 48px;
}

.lgw-mobile-menu__top .lgw-logo {
    width: 190px;
}

.lgw-menu-close {
    display: inline-flex;
    min-height: 46px;
    padding: 0 0 0 14px;
    align-items: center;
    gap: 12px;
    border: 0;
    background: none;
    color: var(--lgw-white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.lgw-menu-close i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font: normal 25px/1 var(--lgw-body);
}

.lgw-mobile-menu__eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.46);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-mobile-menu__eyebrow span:last-child {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.lgw-mobile-menu__eyebrow i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lgw-yellow);
    box-shadow: 0 0 0 4px rgba(245, 208, 0, 0.12);
}

.lgw-mobile-nav {
    display: grid;
    counter-reset: lgw-mobile-nav;
}

.lgw-mobile-nav a {
    position: relative;
    display: grid;
    grid-template-columns: 36px 1fr 28px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid var(--lgw-line-light);
    color: var(--lgw-white);
    font-family: var(--lgw-head);
    font-size: clamp(30px, 7vw, 50px);
    font-weight: 750;
    letter-spacing: -0.05em;
    line-height: 1;
    text-decoration: none;
    counter-increment: lgw-mobile-nav;
    opacity: 0;
    transform: translateX(28px);
    transition: opacity 420ms ease, transform 520ms var(--lgw-ease), color 220ms ease;
}

.lgw-mobile-menu.is-active .lgw-mobile-nav a {
    opacity: 1;
    transform: translateX(0);
}

.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(1) { transition-delay: 70ms; }
.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(2) { transition-delay: 110ms; }
.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(3) { transition-delay: 150ms; }
.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(4) { transition-delay: 190ms; }
.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(5) { transition-delay: 230ms; }
.lgw-mobile-menu.is-active .lgw-mobile-nav a:nth-child(6) { transition-delay: 270ms; }

.lgw-mobile-nav a::before {
    color: rgba(255, 255, 255, 0.38);
    content: "0" counter(lgw-mobile-nav);
    font-family: var(--lgw-body);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.lgw-mobile-nav a::after {
    display: none;
    content: none;
}

.lgw-mobile-nav a > i {
    display: grid;
    justify-self: end;
    color: var(--lgw-yellow);
    font-size: 18px;
    font-style: normal;
}

.lgw-mobile-nav a[aria-current="page"] {
    color: var(--lgw-yellow);
}

.lgw-mobile-nav a[aria-current="page"]::before {
    color: var(--lgw-yellow);
}

.lgw-mobile-menu__feature {
    display: grid;
    gap: 8px;
    margin-top: 32px;
    padding: 24px;
    border: 1px solid var(--lgw-line-light);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 420ms ease 250ms, transform 520ms var(--lgw-ease) 250ms;
}

.lgw-mobile-menu.is-active .lgw-mobile-menu__feature {
    opacity: 1;
    transform: translateY(0);
}

.lgw-mobile-menu__feature > span {
    color: var(--lgw-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lgw-mobile-menu__feature strong {
    font-family: var(--lgw-head);
    font-size: 22px;
    line-height: 1.1;
}

.lgw-mobile-menu__feature a {
    color: var(--lgw-white);
    font-size: 12px;
    font-weight: 800;
}

.lgw-mobile-menu__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 420ms ease 310ms, transform 520ms var(--lgw-ease) 310ms;
}

.lgw-mobile-menu.is-active .lgw-mobile-menu__actions {
    opacity: 1;
    transform: translateY(0);
}

.lgw-mobile-menu__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--lgw-line-light);
    color: rgba(255, 255, 255, 0.46);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    opacity: 0;
    transition: opacity 420ms ease 360ms;
}

.lgw-mobile-menu.is-active .lgw-mobile-menu__meta {
    opacity: 1;
}

.lgw-mobile-menu__meta a {
    color: var(--lgw-white);
}

/* Buttons */
.lgw-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 34px;
}

.lgw-actions--left {
    justify-content: flex-start;
}

.lgw-btn {
    position: relative;
    display: inline-flex;
    min-height: 54px;
    padding: 0 20px 0 24px;
    align-items: center;
    justify-content: center;
    gap: 22px;
    border: 1px solid transparent;
    border-radius: 100px;
    overflow: hidden;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    transition: transform 280ms var(--lgw-ease), box-shadow 280ms ease, background 280ms ease, color 280ms ease, border-color 280ms ease;
}

button.lgw-btn {
    cursor: pointer;
}

.lgw-btn__icon {
    display: inline-grid;
    width: 29px;
    height: 29px;
    place-items: center;
    border-radius: 50%;
    background: currentColor;
    color: var(--lgw-yellow);
    font-size: 12px;
    transition: transform 280ms var(--lgw-ease);
}

.lgw-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(17, 19, 21, 0.16);
}

.lgw-btn:hover .lgw-btn__icon {
    transform: rotate(45deg);
}

.lgw-btn--gold {
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
}

.lgw-btn--dark {
    background: var(--lgw-ink);
    color: var(--lgw-white);
}

.lgw-btn--ghost {
    border-color: currentColor;
    background: transparent;
    color: inherit;
}

.lgw-btn--ghost .lgw-btn__icon {
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
}

/* Shared typography and sections */
.lgw-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    color: var(--lgw-moss);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
}

.lgw-kicker::before {
    width: 26px;
    height: 2px;
    background: var(--lgw-yellow);
    content: "";
}

.lgw-section {
    position: relative;
    padding: clamp(82px, 9vw, 144px) 0;
    background: var(--lgw-paper);
}

.lgw-section--tight {
    padding-top: 0;
}

.lgw-section--band {
    background: var(--lgw-paper-deep);
}

.lgw-section-head {
    max-width: 960px;
    margin: 0 auto 54px;
    text-align: center;
}

.lgw-section-head h2 {
    margin-bottom: 22px;
    font-size: clamp(46px, 6vw, 94px);
}

.lgw-section-head h2 span,
.lgw-intro h2 span,
.lgw-prefooter h2 span {
    color: var(--lgw-moss);
    font-style: italic;
    font-weight: 560;
}

.lgw-section-head > p:not(.lgw-kicker) {
    max-width: 690px;
    margin-inline: auto;
    color: var(--lgw-muted);
}

.lgw-section-head--left {
    max-width: 920px;
    margin-right: auto;
    margin-left: 0;
    text-align: left;
}

.lgw-section-head--left > p:not(.lgw-kicker) {
    margin-left: 0;
}

.lgw-section-head--split {
    display: grid;
    max-width: none;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
    align-items: end;
    gap: 8vw;
    text-align: left;
}

.lgw-section-head--split h2 {
    margin: 0;
}

.lgw-section-head--split > p {
    margin: 0 0 10px;
    font-size: 17px;
}

.lgw-grid {
    display: grid;
    gap: clamp(36px, 6vw, 94px);
}

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

.lgw-grid--stretch {
    align-items: stretch;
}

/* Homepage hero */
.lgw-hero--home {
    position: relative;
    min-height: max(760px, 100svh);
    padding: 150px 0 78px;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 26%, rgba(245, 208, 0, 0.09), transparent 28%),
        linear-gradient(115deg, #090a0a 0%, #111414 58%, #070808 100%);
    color: var(--lgw-white);
}

.lgw-hero--home::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 80px 80px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.lgw-hero__shell {
    position: relative;
    display: grid;
    min-height: calc(100svh - 228px);
    grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
    align-items: center;
    gap: clamp(38px, 6vw, 100px);
}

.lgw-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 790px;
}

.lgw-hero--home .lgw-kicker {
    color: rgba(255, 255, 255, 0.58);
}

.lgw-hero--home h1 {
    margin: 0;
    color: var(--lgw-white);
    font-size: clamp(66px, 8.5vw, 142px);
    line-height: 0.84;
    text-wrap: balance;
}

.lgw-hero--home h1 span {
    color: var(--lgw-yellow);
    font-style: italic;
    font-weight: 560;
}

.lgw-hero__lede {
    max-width: 680px;
    margin: 32px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(17px, 1.45vw, 22px);
    line-height: 1.55;
}

.lgw-hero__badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 48px;
    border-top: 1px solid var(--lgw-line-light);
}

.lgw-hero__badges span {
    display: grid;
    gap: 4px;
    padding: 18px 16px 0 0;
    color: rgba(255, 255, 255, 0.52);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lgw-hero__badges strong {
    color: var(--lgw-white);
    font-family: var(--lgw-head);
    font-size: 15px;
    letter-spacing: -0.02em;
}

.lgw-hero__media {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --parallax-y: 0px;
    position: relative;
    min-height: min(690px, 72vh);
    margin: 0;
    overflow: hidden;
    border-radius: 2px 2px 110px 2px;
    box-shadow: 0 34px 100px rgba(0, 0, 0, 0.38);
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    transition: transform 400ms var(--lgw-ease);
}

.lgw-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 5, 5, 0.74), transparent 58%);
    content: "";
}

.lgw-hero__media > img {
    width: 100%;
    height: calc(100% + 60px);
    object-fit: cover;
    object-position: 52% center;
    transform: translateY(calc(var(--parallax-y) - 30px)) scale(1.04);
    transition: transform 120ms linear;
}

.lgw-hero__media figcaption {
    position: absolute;
    right: 34px;
    bottom: 30px;
    left: 34px;
    z-index: 2;
    display: grid;
    gap: 6px;
    color: var(--lgw-white);
}

.lgw-hero__media figcaption span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.14em;
    opacity: 0.65;
    text-transform: uppercase;
}

.lgw-hero__media figcaption strong {
    font-family: var(--lgw-head);
    font-size: clamp(22px, 2.3vw, 36px);
    letter-spacing: -0.04em;
}

.lgw-play {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 3;
    display: inline-flex;
    min-height: 48px;
    padding: 8px 16px 8px 8px;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 100px;
    background: rgba(17, 19, 21, 0.78);
    color: var(--lgw-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(12px);
}

.lgw-play span {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border-radius: 50%;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font-size: 10px;
}

.lgw-hero__stamp {
    position: absolute;
    top: 38%;
    left: -42px;
    z-index: 3;
    display: grid;
    width: 92px;
    height: 92px;
    place-content: center;
    border-radius: 50%;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    text-align: center;
    transform: rotate(-10deg);
}

.lgw-hero__stamp span {
    font-family: var(--lgw-head);
    font-size: 29px;
    font-weight: 900;
    line-height: 0.85;
}

.lgw-hero__stamp small {
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.lgw-scroll-cue {
    position: absolute;
    bottom: -44px;
    left: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.54);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-decoration: none;
    text-transform: uppercase;
}

.lgw-scroll-cue i {
    position: relative;
    display: block;
    width: 44px;
    height: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.26);
}

.lgw-scroll-cue i::after {
    position: absolute;
    inset: 0;
    background: var(--lgw-yellow);
    content: "";
    animation: lgwScrollCue 2s ease-in-out infinite;
}

.lgw-hero__rail {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 6vw, 90px);
    overflow: hidden;
    border-top: 1px solid var(--lgw-line-light);
    color: rgba(255, 255, 255, 0.42);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lgw-hero__rail span::before {
    margin-right: 10px;
    color: var(--lgw-yellow);
    content: "+";
}

/* Trust rail */
.lgw-marquee {
    overflow: hidden;
    padding: 22px 0;
    border-bottom: 1px solid var(--lgw-line);
    background: var(--lgw-white);
}

.lgw-marquee__track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 74px;
    animation: lgwMarquee 34s linear infinite;
}

.lgw-marquee:hover .lgw-marquee__track {
    animation-play-state: paused;
}

.lgw-marquee img {
    width: auto;
    max-width: 146px;
    height: 46px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.65;
}

/* Intro */
.lgw-intro {
    overflow: hidden;
}

.lgw-intro::after {
    position: absolute;
    top: -90px;
    right: -110px;
    color: rgba(17, 19, 21, 0.035);
    content: "LG";
    font-family: var(--lgw-head);
    font-size: clamp(260px, 38vw, 620px);
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 0.8;
    pointer-events: none;
}

.lgw-intro .lgw-grid {
    position: relative;
    z-index: 1;
    align-items: start;
}

.lgw-intro h2 {
    margin: 0;
    font-size: clamp(52px, 6.8vw, 104px);
}

.lgw-copy {
    max-width: 690px;
    padding-top: 42px;
}

.lgw-copy p {
    color: var(--lgw-muted);
}

.lgw-copy__lead {
    color: var(--lgw-ink) !important;
    font-size: clamp(20px, 2vw, 29px);
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.45;
}

.lgw-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 46px;
    border-top: 1px solid var(--lgw-line);
}

.lgw-stats div {
    display: grid;
    gap: 4px;
    padding: 24px 20px 0 0;
}

.lgw-stats strong {
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: clamp(44px, 5vw, 76px);
    letter-spacing: -0.07em;
    line-height: 1;
}

.lgw-stats span {
    color: var(--lgw-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* Project gallery */
.lgw-project-showcase {
    padding-top: 30px;
}

.lgw-project-grid {
    display: grid;
    min-height: 940px;
    grid-template-columns: 1.25fr 0.75fr 0.85fr;
    grid-template-rows: 1fr 0.86fr;
    gap: 18px;
}

.lgw-project-card {
    position: relative;
    min-height: 320px;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 3px;
    background: var(--lgw-ink);
    color: var(--lgw-white);
    text-align: left;
    cursor: zoom-in;
}

.lgw-project-card--1 {
    grid-row: 1 / 3;
}

.lgw-project-card--2 {
    grid-column: 2 / 4;
}

.lgw-project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--lgw-ease), filter 600ms ease;
}

.lgw-project-card::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 5, 5, 0.88), transparent 60%);
    content: "";
}

.lgw-project-card > span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: end;
    gap: 4px 16px;
}

.lgw-project-card small {
    grid-row: 1 / 3;
    color: var(--lgw-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lgw-project-card strong {
    font-family: var(--lgw-head);
    font-size: clamp(23px, 2.5vw, 40px);
    letter-spacing: -0.045em;
    line-height: 1;
}

.lgw-project-card em {
    color: rgba(255, 255, 255, 0.62);
    font-size: 11px;
    font-style: normal;
}

.lgw-project-card:hover img {
    transform: scale(1.07);
    filter: saturate(1.12) contrast(1.05);
}

/* Core proposition cards */
.lgw-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.lgw-info-card {
    position: relative;
    min-height: 360px;
    padding: clamp(28px, 3vw, 48px);
    overflow: hidden;
    border-radius: var(--lgw-radius);
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.64);
    text-decoration: none;
    transition: transform 420ms var(--lgw-ease), background 300ms ease;
}

.lgw-info-card::after {
    position: absolute;
    right: -30px;
    bottom: -70px;
    color: rgba(255, 255, 255, 0.04);
    content: "+";
    font-family: var(--lgw-head);
    font-size: 260px;
    font-weight: 700;
    line-height: 0.6;
    transition: transform 500ms var(--lgw-ease), color 300ms ease;
}

.lgw-info-card > span {
    color: var(--lgw-yellow);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lgw-info-card h3 {
    margin: 82px 0 22px;
    color: var(--lgw-white);
    font-size: clamp(32px, 3vw, 48px);
}

.lgw-info-card p {
    max-width: 430px;
    margin-bottom: 28px;
}

.lgw-info-card em {
    position: absolute;
    bottom: 34px;
    left: clamp(28px, 3vw, 48px);
    color: var(--lgw-white);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lgw-info-card:hover {
    transform: translateY(-10px);
    background: var(--lgw-graphite);
}

.lgw-info-card:hover::after {
    transform: rotate(15deg) scale(1.1);
    color: rgba(245, 208, 0, 0.11);
}

/* Process and coverage */
.lgw-panel {
    position: relative;
    padding: clamp(34px, 5vw, 76px);
    border-radius: var(--lgw-radius);
    background: var(--lgw-white);
    box-shadow: 0 1px 0 rgba(17, 19, 21, 0.08);
}

.lgw-panel:first-child {
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.65);
}

.lgw-panel:first-child h2 {
    color: var(--lgw-white);
}

.lgw-panel h2 {
    margin-bottom: 20px;
    font-size: clamp(42px, 4.3vw, 70px);
}

.lgw-steps {
    display: grid;
    margin-top: 40px;
}

.lgw-step {
    display: grid;
    grid-template-columns: minmax(140px, 0.35fr) 1fr;
    gap: 24px;
    padding: 22px 0;
    border-top: 1px solid var(--lgw-line-light);
}

.lgw-step strong {
    color: var(--lgw-yellow);
    font-family: var(--lgw-head);
    font-size: 14px;
    letter-spacing: -0.01em;
}

.lgw-step span {
    font-size: 14px;
}

.lgw-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 32px;
}

.lgw-chip-list a,
.lgw-chip-list span {
    display: inline-flex;
    min-height: 44px;
    padding: 0 17px;
    align-items: center;
    border: 1px solid var(--lgw-line);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.42);
    color: var(--lgw-ink);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.lgw-chip-list a:hover {
    transform: translateY(-3px);
    background: var(--lgw-yellow);
}

/* Services */
.lgw-services {
    overflow: hidden;
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.66);
}

.lgw-services::before {
    position: absolute;
    top: 0;
    right: -80px;
    color: rgba(255, 255, 255, 0.025);
    content: "SERVICES";
    font-family: var(--lgw-head);
    font-size: clamp(120px, 19vw, 310px);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 0.8;
    pointer-events: none;
}

.lgw-services .lgw-section-head {
    position: relative;
    z-index: 1;
}

.lgw-services .lgw-section-head h2,
.lgw-services .lgw-kicker {
    color: var(--lgw-white);
}

.lgw-bento {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 16px;
}

.lgw-bento-card {
    position: relative;
    min-height: 450px;
    padding: 34px;
    overflow: hidden;
    grid-column: span 4;
    border-radius: var(--lgw-radius);
    background: #222;
    color: var(--lgw-white);
    text-decoration: none;
}

.lgw-bento-card--wide {
    grid-column: span 7;
}

.lgw-bento-card--full {
    grid-column: span 8;
}

.lgw-media-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.lgw-media-bg::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 5, 5, 0.93), rgba(4, 5, 5, 0.02) 72%);
    content: "";
}

.lgw-media-bg__asset {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 850ms var(--lgw-ease), filter 600ms ease;
}

.lgw-bento-card:hover .lgw-media-bg__asset {
    transform: scale(1.08);
    filter: saturate(1.15);
}

.lgw-pill,
.lgw-bento-card__number,
.lgw-bento-card h3,
.lgw-bento-card p,
.lgw-bento-card__arrow {
    position: relative;
    z-index: 1;
}

.lgw-pill {
    display: inline-flex;
    min-height: 28px;
    padding: 0 12px;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-bento-card__number {
    position: absolute;
    top: 36px;
    right: 82px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.lgw-bento-card__arrow {
    position: absolute;
    top: 24px;
    right: 24px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border-radius: 50%;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font-size: 19px;
    transition: transform 350ms var(--lgw-ease);
}

.lgw-bento-card:hover .lgw-bento-card__arrow {
    transform: rotate(-45deg) scale(1.08);
}

.lgw-bento-card h3 {
    max-width: 570px;
    margin: 225px 0 14px;
    color: var(--lgw-white);
    font-size: clamp(34px, 4.2vw, 66px);
}

.lgw-bento-card p {
    max-width: 560px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 14px;
}

.lgw-services .lgw-actions {
    color: var(--lgw-white);
}

/* Inner hero */
.lgw-inner-hero {
    position: relative;
    padding: 178px 0 74px;
    overflow: hidden;
    background: var(--lgw-paper);
}

.lgw-inner-hero::before {
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: var(--lgw-line);
    content: "";
}

.lgw-inner-hero__shell {
    display: grid;
    min-height: 535px;
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.75fr);
    align-items: stretch;
    gap: clamp(46px, 7vw, 120px);
}

.lgw-inner-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
}

.lgw-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    color: var(--lgw-muted);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.lgw-breadcrumbs a {
    text-decoration: none;
}

.lgw-breadcrumbs a:hover {
    color: var(--lgw-ink);
}

.lgw-inner-hero h1 {
    max-width: 950px;
    margin: 0;
    font-size: clamp(58px, 7vw, 112px);
    line-height: 0.9;
    text-wrap: balance;
}

.lgw-inner-hero__content > p:not(.lgw-kicker) {
    max-width: 720px;
    margin: 30px 0 0;
    color: var(--lgw-muted);
    font-size: clamp(17px, 1.5vw, 21px);
}

.lgw-inner-hero__media {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    --parallax-y: 0px;
    position: relative;
    min-height: 535px;
    margin: 0;
    overflow: hidden;
    border-radius: 2px 2px 80px 2px;
    background: var(--lgw-ink);
    box-shadow: var(--lgw-shadow);
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transition: transform 400ms var(--lgw-ease);
}

.lgw-inner-hero__media::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 6, 6, 0.72), transparent 58%);
    content: "";
}

.lgw-inner-hero__media img {
    width: 100%;
    height: calc(100% + 50px);
    object-fit: cover;
    transform: translateY(calc(var(--parallax-y) - 25px)) scale(1.04);
}

.lgw-inner-hero__media figcaption {
    position: absolute;
    right: 28px;
    bottom: 26px;
    left: 28px;
    z-index: 2;
    display: flex;
    align-items: end;
    justify-content: space-between;
    color: var(--lgw-white);
}

.lgw-inner-hero__media figcaption span {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 0.6;
    text-transform: uppercase;
}

.lgw-inner-hero__media figcaption strong {
    font-family: var(--lgw-head);
    font-size: 14px;
}

.lgw-inner-hero__number {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 2;
    padding: 7px 10px;
    border-radius: 100px;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

/* Content templates */
.lgw-content-grid,
.lgw-calculator-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
    align-items: start;
    gap: clamp(46px, 7vw, 112px);
}

.lgw-rich-copy {
    max-width: 880px;
}

.lgw-rich-copy--narrow {
    width: var(--lgw-narrow);
    max-width: none;
    margin-inline: auto;
}

.lgw-rich-copy > *:first-child {
    margin-top: 0;
}

.lgw-rich-copy p,
.lgw-rich-copy li {
    color: #4f5656;
    font-size: clamp(16px, 1.2vw, 18px);
}

.lgw-rich-copy h2 {
    margin: clamp(62px, 8vw, 104px) 0 24px;
    padding-top: 20px;
    border-top: 1px solid var(--lgw-line);
    font-size: clamp(40px, 4.6vw, 68px);
    scroll-margin-top: 130px;
}

.lgw-rich-copy h3 {
    margin: 42px 0 16px;
    font-size: clamp(28px, 3vw, 42px);
}

.lgw-rich-copy a {
    color: var(--lgw-ink);
    font-weight: 750;
    text-decoration-color: var(--lgw-yellow);
    text-decoration-thickness: 3px;
}

.lgw-rich-copy blockquote {
    margin: 52px 0;
    padding: 34px;
    border-left: 6px solid var(--lgw-yellow);
    background: var(--lgw-white);
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: clamp(24px, 3vw, 38px);
    letter-spacing: -0.04em;
    line-height: 1.2;
}

.lgw-rich-copy img {
    width: 100%;
    height: auto;
    margin: 42px 0;
    border-radius: 4px 4px 46px 4px;
}

.lgw-rich-copy table {
    width: 100%;
    margin: 38px 0;
    border-collapse: collapse;
    background: var(--lgw-white);
}

.lgw-rich-copy th,
.lgw-rich-copy td {
    padding: 14px;
    border: 1px solid var(--lgw-line);
    text-align: left;
    vertical-align: top;
}

.lgw-rich-copy th {
    background: var(--lgw-ink);
    color: var(--lgw-white);
}

.lgw-side-panel {
    position: sticky;
    top: 128px;
    padding: clamp(30px, 4vw, 52px);
    border-radius: var(--lgw-radius);
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.68);
    box-shadow: var(--lgw-shadow);
}

.lgw-side-panel h2 {
    margin-bottom: 20px;
    color: var(--lgw-white);
    font-size: clamp(34px, 3.7vw, 54px);
}

.lgw-side-panel .lgw-kicker {
    color: rgba(255, 255, 255, 0.62);
}

.lgw-side-panel .lgw-btn {
    width: 100%;
    margin-top: 10px;
}

.lgw-side-panel .lgw-btn--ghost {
    color: var(--lgw-white);
}

.lgw-point-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 32px 0 0;
    overflow: hidden;
    border: 1px solid var(--lgw-line);
    background: var(--lgw-line);
    border-radius: 14px;
}

.lgw-point-grid span,
.lgw-point-grid a {
    position: relative;
    min-height: 76px;
    padding: 23px 24px 20px 52px;
    background: var(--lgw-white);
    color: var(--lgw-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    text-decoration: none;
}

.lgw-point-grid span::before,
.lgw-point-grid a::before {
    position: absolute;
    top: 23px;
    left: 22px;
    color: var(--lgw-moss);
    content: "↗";
    font-size: 11px;
}

.lgw-point-grid a:hover {
    background: var(--lgw-yellow);
}

.lgw-source-list {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.lgw-source-list > a {
    display: grid;
    padding: 22px 24px;
    gap: 6px;
    border: 1px solid var(--lgw-line);
    border-radius: 12px;
    background: var(--lgw-white);
    text-decoration: none;
    transition: border-color 220ms ease, transform 280ms var(--lgw-ease), box-shadow 280ms ease;
}

.lgw-source-list > a:hover {
    border-color: rgba(17, 19, 21, 0.42);
    box-shadow: 0 14px 34px rgba(17, 19, 21, 0.08);
    transform: translateY(-2px);
}

.lgw-source-list strong {
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: 18px;
    letter-spacing: -0.025em;
}

.lgw-source-list strong span {
    color: var(--lgw-moss);
}

.lgw-source-list > a > span {
    color: #51595a;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
}

.lgw-article-toc {
    margin-top: 30px;
    padding-top: 26px;
    border-top: 1px solid var(--lgw-line-light);
}

.lgw-article-toc > strong {
    color: var(--lgw-white);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-article-toc ol {
    display: grid;
    gap: 12px;
    margin: 18px 0 0;
    padding-left: 18px;
}

.lgw-article-toc a {
    color: rgba(255, 255, 255, 0.68);
    font-size: 12px;
    text-decoration: none;
}

.lgw-article-toc a:hover {
    color: var(--lgw-yellow);
}

/* Link and hub cards */
.lgw-link-card,
.lgw-location-card {
    position: relative;
    display: flex;
    min-height: 245px;
    padding: 30px;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    border: 1px solid var(--lgw-line);
    border-radius: 18px;
    background: rgba(255, 254, 250, 0.74);
    color: var(--lgw-text);
    text-decoration: none;
    transition: transform 340ms var(--lgw-ease), background 260ms ease, box-shadow 340ms ease;
}

.lgw-link-card::before,
.lgw-location-card::before {
    position: absolute;
    top: 25px;
    right: 25px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--lgw-line);
    border-radius: 50%;
    color: var(--lgw-ink);
    content: "↗";
    transition: transform 300ms var(--lgw-ease), background 260ms ease;
}

.lgw-link-card strong,
.lgw-location-card strong {
    max-width: 90%;
    margin-bottom: 14px;
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: clamp(24px, 2.4vw, 34px);
    letter-spacing: -0.045em;
    line-height: 1.05;
}

.lgw-link-card span,
.lgw-location-card span {
    color: var(--lgw-muted);
    font-size: 13px;
}

.lgw-link-card:hover,
.lgw-location-card:hover {
    transform: translateY(-8px);
    background: var(--lgw-white);
    box-shadow: var(--lgw-shadow);
}

.lgw-link-card:hover::before,
.lgw-location-card:hover::before {
    transform: rotate(45deg);
    background: var(--lgw-yellow);
}

.lgw-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.lgw-service-tile {
    position: relative;
    min-height: 590px;
    padding: 36px;
    overflow: hidden;
    border-radius: var(--lgw-radius);
    background: var(--lgw-ink);
    color: var(--lgw-white);
    text-decoration: none;
}

.lgw-service-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.66;
    transition: transform 700ms var(--lgw-ease), opacity 400ms ease;
}

.lgw-service-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 7, 7, 0.96), transparent 66%);
    content: "";
}

.lgw-service-tile > span,
.lgw-service-tile h2,
.lgw-service-tile p {
    position: relative;
    z-index: 1;
}

.lgw-service-tile > span {
    display: inline-block;
    margin-top: 370px;
    color: var(--lgw-yellow);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lgw-service-tile h2 {
    margin: 10px 0 14px;
    color: var(--lgw-white);
    font-size: clamp(38px, 4vw, 62px);
}

.lgw-service-tile p {
    max-width: 600px;
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.lgw-service-tile:hover img {
    transform: scale(1.06);
    opacity: 0.78;
}

.lgw-location-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 88px;
}

.lgw-location-card {
    min-height: 275px;
}

/* Media strip */
.lgw-media-strip {
    overflow: hidden;
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.66);
}

.lgw-media-strip .lgw-section-head h2,
.lgw-media-strip .lgw-kicker {
    color: var(--lgw-white);
}

.lgw-media-strip .lgw-section-head > p {
    color: rgba(255, 255, 255, 0.55);
}

.lgw-media-strip__grid {
    display: grid;
    min-height: 630px;
    grid-template-columns: 1.15fr 0.85fr 0.85fr;
    gap: 16px;
}

.lgw-media-strip__item {
    position: relative;
    padding: 0;
    overflow: hidden;
    border: 0;
    border-radius: 3px;
    background: #222;
    color: var(--lgw-white);
    cursor: zoom-in;
}

.lgw-media-strip__item:nth-child(2) {
    margin-top: 90px;
}

.lgw-media-strip__item:nth-child(3) {
    margin-bottom: 90px;
}

.lgw-media-strip__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 800ms var(--lgw-ease), filter 400ms ease;
}

.lgw-media-strip__item::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 5, 5, 0.88), transparent 62%);
    content: "";
}

.lgw-media-strip__item > span {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    z-index: 2;
    display: grid;
    gap: 5px;
    text-align: left;
}

.lgw-media-strip__item small {
    color: var(--lgw-yellow);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.12em;
}

.lgw-media-strip__item strong {
    font-family: var(--lgw-head);
    font-size: clamp(22px, 2.6vw, 38px);
    letter-spacing: -0.045em;
    line-height: 1;
}

.lgw-media-strip__item em {
    color: rgba(255, 255, 255, 0.58);
    font-size: 10px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lgw-media-strip__item:hover img {
    transform: scale(1.07);
    filter: saturate(1.14);
}

/* FAQs */
.lgw-faqs {
    max-width: 1080px;
}

.lgw-faq {
    border-top: 1px solid var(--lgw-line);
}

.lgw-faq:last-child {
    border-bottom: 1px solid var(--lgw-line);
}

.lgw-faq summary {
    position: relative;
    padding: 28px 68px 28px 0;
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: clamp(21px, 2.4vw, 34px);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.15;
    list-style: none;
    cursor: pointer;
}

.lgw-faq summary::-webkit-details-marker {
    display: none;
}

.lgw-faq summary::after {
    position: absolute;
    top: 50%;
    right: 2px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--lgw-line);
    border-radius: 50%;
    content: "+";
    transform: translateY(-50%);
    transition: transform 300ms var(--lgw-ease), background 240ms ease;
}

.lgw-faq[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
    background: var(--lgw-yellow);
}

.lgw-faq p {
    max-width: 820px;
    padding: 0 0 30px;
    color: var(--lgw-muted);
}

/* Calculator */
.lgw-calculator {
    display: grid;
    gap: 32px;
    padding: clamp(28px, 4vw, 54px);
    border-radius: var(--lgw-radius);
    background: var(--lgw-white);
    box-shadow: var(--lgw-shadow);
}

.lgw-calculator__head {
    padding-top: 20px;
    border-top: 1px solid var(--lgw-line);
}

.lgw-calculator__head:first-child {
    padding-top: 0;
    border-top: 0;
}

.lgw-calculator__head h2 {
    margin: 0 0 14px;
    font-size: clamp(36px, 4vw, 58px);
}

.lgw-calculator__head p:last-child {
    color: var(--lgw-muted);
}

.lgw-calculator__fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.lgw-calculator label {
    display: grid;
    gap: 8px;
    color: var(--lgw-muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.lgw-calculator input {
    width: 100%;
    min-height: 56px;
    padding: 0 16px;
    border: 1px solid var(--lgw-line);
    border-radius: 10px;
    background: var(--lgw-paper);
    color: var(--lgw-ink);
    font-size: 17px;
    font-weight: 700;
    transition: border 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lgw-calculator input:focus {
    border-color: var(--lgw-yellow);
    outline: 0;
    background: var(--lgw-white);
    box-shadow: 0 0 0 4px rgba(245, 208, 0, 0.18);
}

.lgw-calculator__results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: hidden;
    border-radius: 14px;
    background: var(--lgw-ink);
}

.lgw-calculator__results--single {
    grid-template-columns: 1fr;
}

.lgw-calculator__results div {
    display: grid;
    gap: 8px;
    padding: 22px;
    border-right: 1px solid var(--lgw-line-light);
}

.lgw-calculator__results span,
.lgw-calculator__budget > span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.lgw-calculator__results strong {
    color: var(--lgw-yellow);
    font-family: var(--lgw-head);
    font-size: clamp(20px, 2.2vw, 31px);
    letter-spacing: -0.04em;
}

.lgw-calculator__budget {
    display: grid;
    gap: 10px;
    padding: 28px;
    border-radius: 14px;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
}

.lgw-calculator__budget > span {
    color: rgba(17, 19, 21, 0.62);
}

.lgw-calculator__budget strong {
    font-family: var(--lgw-head);
    font-size: clamp(48px, 6vw, 84px);
    letter-spacing: -0.07em;
    line-height: 1;
}

.lgw-calculator__budget small {
    max-width: 680px;
    font-size: 11px;
}

/* Contact and about */
.lgw-contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.lgw-contact-card {
    min-height: 340px;
    padding: clamp(30px, 5vw, 66px);
    border: 1px solid var(--lgw-line);
    border-radius: var(--lgw-radius);
    background: var(--lgw-white);
}

.lgw-contact-card:nth-child(1) {
    background: var(--lgw-yellow);
}

.lgw-contact-card:nth-child(4) {
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.66);
}

.lgw-contact-card:nth-child(4) h2 {
    color: var(--lgw-white);
}

.lgw-contact-card h2 {
    margin: 92px 0 18px;
    font-size: clamp(35px, 4vw, 62px);
}

.lgw-contact-card h2 a {
    text-decoration: none;
}

.lgw-address {
    display: grid;
    color: inherit;
    font-style: normal;
}

.lgw-enquiry-section {
    background: var(--lgw-ink);
    color: rgba(255, 255, 255, 0.68);
}

.lgw-enquiry-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(580px, 1.22fr);
    gap: clamp(42px, 7vw, 110px);
    align-items: start;
}

.lgw-enquiry-intro {
    position: sticky;
    top: 150px;
}

.lgw-enquiry-intro .lgw-kicker {
    color: var(--lgw-yellow);
}

.lgw-enquiry-intro h2 {
    max-width: 620px;
    margin: 22px 0 28px;
    color: var(--lgw-white);
    font-size: clamp(50px, 6vw, 94px);
}

.lgw-enquiry-intro__note {
    display: grid;
    gap: 10px;
    margin-top: 70px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.lgw-enquiry-intro__note span {
    color: var(--lgw-yellow);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.lgw-enquiry-intro__note strong {
    max-width: 460px;
    color: var(--lgw-white);
    font-size: 18px;
    line-height: 1.5;
}

.lgw-enquiry-shell {
    padding: clamp(28px, 4.5vw, 60px);
    border-radius: var(--lgw-radius);
    background: var(--lgw-white);
    color: var(--lgw-text);
}

.lgw-enquiry-form,
.lgw-enquiry-form__grid {
    display: grid;
    gap: 22px;
}

.lgw-enquiry-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lgw-enquiry-form label {
    display: grid;
    gap: 9px;
    color: var(--lgw-ink);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lgw-enquiry-form label > span b {
    color: #9e2f20;
}

.lgw-enquiry-form input,
.lgw-enquiry-form select,
.lgw-enquiry-form textarea {
    width: 100%;
    min-height: 54px;
    padding: 14px 16px;
    border: 1px solid var(--lgw-line);
    border-radius: 4px;
    outline: 0;
    background: var(--lgw-paper);
    color: var(--lgw-ink);
    font: 600 15px/1.4 var(--lgw-body);
    letter-spacing: normal;
    text-transform: none;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.lgw-enquiry-form textarea {
    min-height: 168px;
    resize: vertical;
}

.lgw-enquiry-form input:focus,
.lgw-enquiry-form select:focus,
.lgw-enquiry-form textarea:focus {
    border-color: var(--lgw-ink);
    background: var(--lgw-white);
    box-shadow: 0 0 0 3px rgba(245, 208, 0, 0.38);
}

.lgw-enquiry-form__consent {
    grid-template-columns: 22px 1fr;
    align-items: start;
    color: var(--lgw-text) !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    line-height: 1.6;
    text-transform: none !important;
}

.lgw-enquiry-form__consent input {
    min-height: 0;
    margin-top: 3px;
    accent-color: var(--lgw-yellow);
}

.lgw-enquiry-form__submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 4px;
}

.lgw-enquiry-form__submit small {
    max-width: 290px;
    color: var(--lgw-muted);
    line-height: 1.55;
}

.lgw-honeypot {
    position: absolute !important;
    left: -10000px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

.lgw-form-notice {
    margin-bottom: 24px;
    padding: 17px 19px;
    border-left: 4px solid currentColor;
    background: var(--lgw-paper);
    line-height: 1.55;
}

.lgw-form-notice--success {
    color: #245d34;
}

.lgw-form-notice--error {
    color: #8a2f24;
}

.lgw-checklist {
    display: grid;
    margin: 0;
    padding: 0;
    border-top: 1px solid var(--lgw-line);
    list-style: none;
}

.lgw-checklist li {
    display: grid;
    grid-template-columns: 44px 0.8fr 1.1fr;
    align-items: center;
    gap: 16px;
    padding: 19px 0;
    border-bottom: 1px solid var(--lgw-line);
}

.lgw-checklist span {
    color: var(--lgw-moss);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.1em;
}

.lgw-checklist strong {
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: 17px;
}

.lgw-checklist small {
    color: var(--lgw-muted);
}

.lgw-about-numbers {
    padding-top: 0;
}

.lgw-about-numbers__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    overflow: hidden;
    border-radius: var(--lgw-radius);
    background: var(--lgw-yellow);
}

.lgw-about-numbers__grid > div {
    min-height: 310px;
    padding: clamp(30px, 4vw, 56px);
    border-right: 1px solid rgba(17, 19, 21, 0.18);
}

.lgw-about-numbers strong {
    display: block;
    color: var(--lgw-ink);
    font-family: var(--lgw-head);
    font-size: clamp(64px, 8vw, 112px);
    letter-spacing: -0.08em;
    line-height: 0.9;
}

.lgw-about-numbers span {
    display: block;
    margin-top: 20px;
    color: var(--lgw-ink);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-about-numbers p {
    margin: 30px 0 0;
    color: rgba(17, 19, 21, 0.68);
    font-size: 13px;
}

/* CTA and footer */
.lgw-cta {
    position: relative;
    padding: clamp(92px, 11vw, 170px) 0;
    overflow: hidden;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    text-align: center;
}

.lgw-cta::before {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 760px;
    height: 760px;
    border: 1px solid rgba(17, 19, 21, 0.15);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.lgw-cta::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(17, 19, 21, 0.12);
    border-radius: 50%;
    content: "";
    transform: translate(-50%, -50%);
}

.lgw-cta .lgw-wrap {
    position: relative;
    z-index: 1;
    max-width: 1000px;
}

.lgw-cta h2 {
    margin-bottom: 24px;
    font-size: clamp(60px, 9vw, 132px);
}

.lgw-cta p {
    max-width: 690px;
    margin-inline: auto;
    font-size: 18px;
}

.lgw-prefooter {
    padding: clamp(80px, 10vw, 150px) 0;
    background: var(--lgw-white);
}

.lgw-prefooter__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
    align-items: end;
    gap: 8vw;
}

.lgw-prefooter h2 {
    margin: 0;
    font-size: clamp(54px, 7vw, 112px);
}

.lgw-prefooter__action p {
    color: var(--lgw-muted);
}

.lgw-footer {
    padding: 82px 0 24px;
    background: #090a0a;
    color: rgba(255, 255, 255, 0.6);
}

.lgw-footer__grid {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.65fr));
    gap: clamp(36px, 6vw, 92px);
}

.lgw-footer__brand .lgw-logo {
    width: 230px;
}

.lgw-footer__brand > p {
    max-width: 410px;
    margin: 30px 0;
}

.lgw-footer__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lgw-footer__socials a {
    padding: 9px 13px;
    border: 1px solid var(--lgw-line-light);
    border-radius: 100px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-decoration: none;
    text-transform: uppercase;
}

.lgw-footer__column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.lgw-footer h2 {
    margin-bottom: 12px;
    color: var(--lgw-white);
    font-family: var(--lgw-body);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lgw-footer__column > a,
.lgw-footer__address a {
    color: inherit;
    font-size: 13px;
    text-decoration: none;
}

.lgw-footer__column > a:hover,
.lgw-footer__address a:hover {
    color: var(--lgw-yellow);
}

.lgw-footer__phone {
    margin-bottom: 10px;
    color: var(--lgw-white) !important;
    font-family: var(--lgw-head);
    font-size: clamp(23px, 2.2vw, 35px) !important;
    font-weight: 750;
    letter-spacing: -0.04em;
}

.lgw-footer__address {
    display: grid;
    gap: 4px;
    margin: 14px 0;
    font-style: normal;
}

.lgw-footer__address span {
    color: rgba(255, 255, 255, 0.34);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 72px;
    padding-top: 22px;
    border-top: 1px solid var(--lgw-line-light);
    color: rgba(255, 255, 255, 0.34);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.lgw-footer__legal {
    display: flex;
    gap: 20px;
}

.lgw-footer__legal a {
    text-decoration: none;
}

/* Modal and mobile utilities */
.lgw-media-modal[hidden] {
    display: none;
}

.lgw-media-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: grid;
    padding: 28px;
    place-items: center;
}

.lgw-media-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(5, 6, 6, 0.92);
    backdrop-filter: blur(14px);
}

.lgw-media-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(1180px, 100%);
    max-height: calc(100vh - 56px);
    padding: 58px 20px 20px;
    overflow: auto;
    border: 1px solid var(--lgw-line-light);
    border-radius: 18px;
    background: var(--lgw-ink);
    color: var(--lgw-white);
    box-shadow: 0 40px 120px rgba(0, 0, 0, 0.58);
}

.lgw-media-modal__close {
    position: absolute;
    top: 16px;
    right: 20px;
    padding: 8px 0;
    border: 0;
    background: transparent;
    color: var(--lgw-white);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
}

.lgw-media-modal__stage {
    display: grid;
    min-height: min(68vh, 760px);
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
}

.lgw-media-modal__stage img,
.lgw-media-modal__stage video {
    width: 100%;
    max-height: 72vh;
    object-fit: contain;
}

.lgw-media-modal__dialog > p {
    margin: 16px 4px 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 12px;
}

.lgw-back-to-top {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 800;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--lgw-ink);
    color: var(--lgw-white);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 220ms ease, transform 300ms var(--lgw-ease);
    pointer-events: none;
    cursor: pointer;
}

.lgw-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.lgw-mobile-dock {
    display: none;
}

.lgw-swipe-cue {
    display: none;
}

.lgw-touch-ripple {
    position: absolute;
    z-index: 8;
    border-radius: 50%;
    background: rgba(245, 208, 0, 0.3);
    transform: scale(0);
    animation: lgwTouchRipple 480ms ease-out forwards;
    pointer-events: none;
}

/* Motion */
.lgw-reveal {
    opacity: 1;
    transform: none;
}

.lgw-js .lgw-reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 760ms var(--lgw-ease) var(--reveal-delay, 0ms), transform 760ms var(--lgw-ease) var(--reveal-delay, 0ms);
}

.lgw-js .lgw-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes lgwMarquee {
    to { transform: translateX(-25%); }
}

@keyframes lgwScrollCue {
    0% { transform: translateX(-100%); }
    55%, 100% { transform: translateX(100%); }
}

@keyframes lgwMenuIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes lgwTouchRipple {
    0% { opacity: 0.72; transform: scale(0); }
    100% { opacity: 0; transform: scale(1); }
}

@keyframes lgwSwipeHint {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(7px); }
}

@keyframes lgwFaqIn {
    from { opacity: 0; transform: translateY(-7px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 1240px) {
    :root {
        --lgw-wrap: min(100% - 48px, 1280px);
    }

    .lgw-header__inner {
        grid-template-columns: 190px 1fr auto;
        gap: 20px;
    }

    .lgw-nav {
        gap: 18px;
    }

    .lgw-header__phone {
        display: none;
    }

    .lgw-hero__shell,
    .lgw-inner-hero__shell {
        gap: 44px;
    }

    .lgw-project-grid {
        min-height: 800px;
    }

    .lgw-bento-card {
        grid-column: span 6;
    }

    .lgw-bento-card--wide,
    .lgw-bento-card--full {
        grid-column: span 6;
    }

    .lgw-footer__grid {
        grid-template-columns: 1.3fr repeat(3, 0.7fr);
        gap: 36px;
    }
}

@media (max-width: 1040px) {
    .lgw-nav,
    .lgw-header__actions {
        display: none;
    }

    .lgw-header__inner {
        display: flex;
        justify-content: space-between;
    }

    .lgw-menu-toggle {
        display: block;
    }

    .lgw-hero--home {
        min-height: 0;
        padding-top: 154px;
    }

    .lgw-hero__shell,
    .lgw-inner-hero__shell {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .lgw-hero__media {
        min-height: 620px;
    }

    .lgw-hero__stamp {
        left: auto;
        right: 26px;
        top: auto;
        bottom: 94px;
    }

    .lgw-scroll-cue {
        display: none;
    }

    .lgw-project-grid {
        min-height: 940px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1.2fr 0.8fr 0.8fr;
    }

    .lgw-project-card--1 {
        grid-column: 1 / 3;
        grid-row: auto;
    }

    .lgw-project-card--2 {
        grid-column: auto;
    }

    .lgw-card-grid,
    .lgw-location-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lgw-inner-hero {
        padding-top: 156px;
    }

    .lgw-inner-hero__media {
        min-height: 560px;
        order: -1;
    }

    .lgw-breadcrumbs {
        margin-bottom: 30px;
    }

    .lgw-content-grid,
    .lgw-calculator-layout {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 48px;
    }

    .lgw-media-strip__grid {
        min-height: 520px;
    }

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

    .lgw-footer__brand {
        grid-column: 1 / 3;
    }
}

@media (max-width: 800px) {
    :root {
        --lgw-wrap: calc(100% - 34px);
        --lgw-narrow: calc(100% - 34px);
    }

    html {
        scroll-padding-top: 102px;
    }

    .lgw-header__utility {
        display: none;
    }

    .lgw-header__inner {
        min-height: 76px;
    }

    .lgw-header.is-scrolled .lgw-header__inner {
        min-height: 68px;
    }

    .lgw-logo {
        width: 174px;
    }

    .lgw-section {
        padding: 76px 0;
    }

    .lgw-section--tight {
        padding-top: 0;
    }

    .lgw-section-head--split,
    .lgw-grid--2,
    .lgw-prefooter__grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .lgw-hero--home {
        padding: 118px 0 66px;
    }

    .lgw-hero--home h1 {
        font-size: clamp(61px, 18vw, 104px);
    }

    .lgw-hero__badges {
        grid-template-columns: 1fr 1fr;
    }

    .lgw-hero__badges span:last-child {
        display: none;
    }

    .lgw-hero__media {
        min-height: 520px;
        border-radius: 2px 2px 62px 2px;
    }

    .lgw-hero__rail {
        justify-content: flex-start;
        padding-left: 18px;
        gap: 32px;
        white-space: nowrap;
    }

    .lgw-intro .lgw-grid {
        grid-template-columns: 1fr;
    }

    .lgw-enquiry-layout {
        grid-template-columns: 1fr;
    }

    .lgw-enquiry-intro {
        position: static;
    }

    .lgw-copy {
        padding-top: 0;
    }

    .lgw-project-grid {
        min-height: 0;
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

    .lgw-project-card,
    .lgw-project-card--1,
    .lgw-project-card--2 {
        min-height: 460px;
        grid-column: auto;
        grid-row: auto;
    }

    .lgw-card-grid,
    .lgw-location-grid,
    .lgw-list-grid,
    .lgw-contact-grid,
    .lgw-about-numbers__grid {
        grid-template-columns: 1fr;
    }

    .lgw-info-card {
        min-height: 330px;
    }

    .lgw-bento {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lgw-bento-card,
    .lgw-bento-card--wide,
    .lgw-bento-card--full {
        min-height: 480px;
        grid-column: auto;
    }

    .lgw-inner-hero {
        padding: 112px 0 60px;
    }

    .lgw-inner-hero__media {
        min-height: 430px;
        border-radius: 2px 2px 54px 2px;
    }

    .lgw-inner-hero h1 {
        font-size: clamp(52px, 13vw, 82px);
    }

    .lgw-content-grid,
    .lgw-calculator-layout {
        grid-template-columns: 1fr;
    }

    .lgw-side-panel {
        position: relative;
        top: auto;
    }

    .lgw-media-strip__grid {
        min-height: 0;
        grid-template-columns: 1fr 1fr;
    }

    .lgw-media-strip__item {
        min-height: 430px;
    }

    .lgw-media-strip__item:first-child {
        grid-column: 1 / 3;
    }

    .lgw-media-strip__item:nth-child(2),
    .lgw-media-strip__item:nth-child(3) {
        margin: 0;
    }

    .lgw-about-numbers__grid > div {
        min-height: 250px;
        border-right: 0;
        border-bottom: 1px solid rgba(17, 19, 21, 0.18);
    }

    .lgw-footer__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lgw-footer__brand {
        grid-column: 1 / 3;
    }

    .lgw-footer__contact {
        grid-column: 1 / 3;
    }

    .lgw-back-to-top {
        bottom: 80px;
    }
}

@media (max-width: 560px) {
    body {
        padding-bottom: 66px;
    }

    .lgw-header__inner {
        width: calc(100% - 24px);
    }

    .lgw-logo {
        width: 150px;
    }

    .lgw-menu-toggle {
        width: 44px;
        height: 44px;
    }

    .lgw-hero--home h1 {
        font-size: clamp(55px, 18vw, 82px);
    }

    .lgw-hero__lede {
        font-size: 16px;
    }

    .lgw-hero__media {
        min-height: 420px;
    }

    .lgw-hero__media figcaption {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }

    .lgw-hero__stamp {
        display: none;
    }

    .lgw-play {
        top: 14px;
        right: 14px;
    }

    .lgw-actions,
    .lgw-mobile-menu__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lgw-btn {
        width: 100%;
        justify-content: space-between;
    }

    .lgw-hero__badges span {
        padding-right: 6px;
        font-size: 8px;
    }

    .lgw-project-card,
    .lgw-project-card--1,
    .lgw-project-card--2 {
        min-height: 370px;
    }

    .lgw-card-grid,
    .lgw-location-grid {
        grid-template-columns: 1fr;
    }

    .lgw-panel {
        padding: 28px;
    }

    .lgw-step {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .lgw-inner-hero__media {
        min-height: 340px;
    }

    .lgw-breadcrumbs {
        display: none;
    }

    .lgw-inner-hero h1 {
        font-size: clamp(46px, 13.5vw, 68px);
    }

    .lgw-point-grid,
    .lgw-calculator__fields,
    .lgw-calculator__results,
    .lgw-enquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .lgw-enquiry-shell {
        padding: 24px 18px;
    }

    .lgw-enquiry-form__submit {
        display: grid;
    }

    .lgw-enquiry-form__submit small {
        max-width: none;
    }

    .lgw-calculator__results div {
        border-right: 0;
        border-bottom: 1px solid var(--lgw-line-light);
    }

    .lgw-media-strip__grid {
        grid-template-columns: 1fr;
    }

    .lgw-media-strip__item,
    .lgw-media-strip__item:first-child {
        min-height: 380px;
        grid-column: auto;
    }

    .lgw-checklist li {
        grid-template-columns: 34px 1fr;
    }

    .lgw-checklist small {
        grid-column: 2;
    }

    .lgw-footer {
        padding-top: 64px;
    }

    .lgw-footer__grid,
    .lgw-footer__bottom {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lgw-footer__brand,
    .lgw-footer__contact {
        grid-column: auto;
    }

    .lgw-footer__bottom {
        align-items: start;
    }

    .lgw-mobile-dock {
        position: fixed;
        inset: auto 0 0;
        z-index: 900;
        display: grid;
        height: 66px;
        grid-template-columns: 1fr 1fr;
        background: var(--lgw-ink);
        box-shadow: 0 -10px 34px rgba(17, 19, 21, 0.24);
    }

    .lgw-mobile-dock a {
        display: grid;
        align-content: center;
        padding: 0 18px;
        border-right: 1px solid var(--lgw-line-light);
        color: var(--lgw-white);
        line-height: 1.15;
        text-decoration: none;
    }

    .lgw-mobile-dock a:last-child {
        background: var(--lgw-yellow);
        color: var(--lgw-ink);
    }

    .lgw-mobile-dock span {
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.12em;
        opacity: 0.6;
        text-transform: uppercase;
    }

    .lgw-mobile-dock strong {
        font-family: var(--lgw-head);
        font-size: 13px;
    }

    .lgw-media-modal {
        padding: 10px;
    }
}

/* Mobile experience 2.1 — designed as a dedicated touch surface */
@media (max-width: 800px), (max-width: 920px) and (max-height: 500px) and (pointer: coarse) {
    :root {
        --lgw-wrap: calc(100% - 28px);
        --lgw-narrow: calc(100% - 28px);
        --lgw-radius: 18px;
    }

    html {
        scroll-padding-top: 92px;
        overscroll-behavior-y: none;
    }

    body {
        padding-bottom: calc(88px + env(safe-area-inset-bottom));
        -webkit-touch-callout: none;
    }

    .lgw-header,
    body:not(.lgw-front) .lgw-header,
    body:not(.lgw-front) .lgw-header:not(.is-scrolled),
    .lgw-header.is-scrolled {
        padding-top: max(8px, env(safe-area-inset-top));
        background: transparent;
        box-shadow: none;
        backdrop-filter: none;
        transition: transform 420ms var(--lgw-ease), color 240ms ease;
        will-change: transform;
    }

    .lgw-header.is-mobile-hidden {
        transform: translateY(-140%);
    }

    .lgw-header__inner,
    body:not(.lgw-front) .lgw-header__inner,
    .lgw-header.is-scrolled .lgw-header__inner {
        width: calc(100% - 20px);
        min-height: 64px;
        padding: 0 8px 0 14px;
        border: 1px solid rgba(17, 19, 21, 0.1);
        border-radius: 20px;
        background: rgba(242, 240, 233, 0.9);
        box-shadow: 0 10px 36px rgba(17, 19, 21, 0.12);
        backdrop-filter: blur(20px) saturate(1.25);
        transition: min-height 300ms var(--lgw-ease), border-color 300ms ease, opacity 420ms ease, transform 520ms var(--lgw-ease);
    }

    .lgw-front .lgw-header:not(.is-scrolled) .lgw-header__inner {
        border-color: rgba(255, 255, 255, 0.14);
        background: rgba(12, 14, 14, 0.76);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
    }

    .lgw-logo {
        width: 150px;
        max-width: calc(100% - 64px);
    }

    .lgw-menu-toggle {
        position: relative;
        display: grid;
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        place-items: center;
        border: 0;
        border-radius: 15px;
        background: var(--lgw-yellow);
        color: var(--lgw-ink);
        box-shadow: inset 0 0 0 1px rgba(17, 19, 21, 0.08);
        transition: transform 160ms var(--lgw-ease-snap), background 180ms ease;
        overflow: hidden;
    }

    .lgw-menu-toggle__bars,
    .lgw-menu-toggle__bars::before,
    .lgw-menu-toggle__bars::after {
        width: 20px;
        height: 2px;
        border-radius: 2px;
    }

    .lgw-menu-toggle__bars::before {
        transform: translate(3px, -6px);
    }

    .lgw-menu-toggle__bars::after {
        transform: translate(-3px, 4px);
    }

    .lgw-scroll-progress {
        top: env(safe-area-inset-top);
        height: 2px;
    }

    .lgw-mobile-menu {
        height: 100vh;
        height: 100dvh;
        padding: 0;
        overflow: hidden;
        background: var(--lgw-ink);
        backdrop-filter: none;
    }

    .lgw-mobile-menu__panel {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        min-height: 0;
        padding: calc(18px + env(safe-area-inset-top)) 18px calc(104px + env(safe-area-inset-bottom));
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        border-radius: 28px;
        background:
            radial-gradient(circle at 92% 14%, rgba(245, 208, 0, 0.12), transparent 26%),
            linear-gradient(150deg, #151819, #0c0e0e 68%);
        transform: translateY(28px) scale(0.982);
        transform-origin: bottom;
        transition: transform 440ms var(--lgw-ease), border-radius 440ms var(--lgw-ease);
        -webkit-overflow-scrolling: touch;
    }

    .lgw-mobile-menu.is-active .lgw-mobile-menu__panel {
        border-radius: 0;
        transform: translateY(0) scale(1);
    }

    .lgw-mobile-menu__top {
        position: sticky;
        top: calc(-18px - env(safe-area-inset-top));
        z-index: 4;
        margin: calc(-18px - env(safe-area-inset-top)) -18px 24px;
        padding: calc(18px + env(safe-area-inset-top)) 18px 14px;
        background: linear-gradient(to bottom, #131616 72%, transparent);
    }

    .lgw-mobile-menu__top .lgw-logo {
        width: 154px;
    }

    .lgw-menu-close {
        min-width: 104px;
        padding-left: 12px;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.06);
    }

    .lgw-mobile-menu__eyebrow {
        margin-bottom: 8px;
        padding: 0 2px 10px;
        border-bottom: 1px solid var(--lgw-line-light);
    }

    .lgw-mobile-nav a {
        min-height: 66px;
        padding: 13px 2px;
        grid-template-columns: 34px 1fr 30px;
        font-size: clamp(35px, 10.8vw, 52px);
        touch-action: manipulation;
    }

    .lgw-mobile-nav a > i {
        display: grid;
        width: 28px;
        height: 28px;
        place-items: center;
        border-radius: 50%;
        background: rgba(245, 208, 0, 0.1);
        font-size: 14px;
    }

    .lgw-mobile-nav a[aria-current="page"] > i {
        background: var(--lgw-yellow);
        color: var(--lgw-ink);
    }

    .lgw-mobile-menu__feature {
        margin-top: 22px;
        padding: 20px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(245, 208, 0, 0.12), rgba(255, 255, 255, 0.035));
    }

    .lgw-mobile-menu__feature strong {
        max-width: 340px;
        font-size: clamp(23px, 7vw, 31px);
    }

    .lgw-mobile-menu__feature a {
        display: inline-flex;
        min-height: 44px;
        align-items: center;
    }

    .lgw-mobile-menu__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 9px;
        margin-top: 18px;
    }

    .lgw-mobile-menu__actions .lgw-btn {
        min-width: 0;
        min-height: 52px;
        padding-inline: 14px 9px;
        gap: 8px;
        font-size: 8px;
    }

    .lgw-mobile-menu__actions .lgw-btn__icon {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
    }

    .lgw-mobile-menu__meta {
        padding-bottom: 20px;
        line-height: 1.5;
    }

    .lgw-section {
        padding: 62px 0;
    }

    .lgw-section--tight {
        padding-top: 0;
    }

    .lgw-section-head {
        margin-bottom: 34px;
    }

    .lgw-section-head h2 {
        font-size: clamp(43px, 12.5vw, 68px);
    }

    .lgw-section-head--split {
        gap: 22px;
    }

    .lgw-section-head--split > p {
        font-size: 15px;
    }

    .lgw-js .lgw-reveal {
        transform: translateY(20px);
        transition-duration: 580ms;
    }

    .lgw-hero--home .lgw-reveal,
    .lgw-inner-hero .lgw-reveal {
        opacity: 1;
        transform: none;
    }

    .lgw-hero--home {
        min-height: 0;
        padding: calc(98px + env(safe-area-inset-top)) 0 66px;
        background:
            radial-gradient(circle at 88% 18%, rgba(245, 208, 0, 0.12), transparent 30%),
            linear-gradient(145deg, #080a0a, #121515 66%, #090a0a);
    }

    .lgw-hero__shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .lgw-hero__inner,
    .lgw-hero__media,
    .lgw-inner-hero__content,
    .lgw-inner-hero__media {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .lgw-hero--home .lgw-kicker {
        font-size: 8px;
    }

    .lgw-hero--home h1 {
        font-size: clamp(56px, 17.2vw, 82px);
        line-height: 0.87;
    }

    .lgw-hero__lede {
        margin-top: 24px;
        font-size: 15px;
        line-height: 1.58;
    }

    .lgw-hero--home .lgw-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 26px;
    }

    .lgw-hero--home .lgw-btn {
        min-width: 0;
        min-height: 52px;
        padding: 0 10px 0 14px;
        gap: 8px;
        font-size: 8px;
    }

    .lgw-hero--home .lgw-btn__icon {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
    }

    .lgw-hero__badges {
        display: flex;
        margin: 30px -14px 0 0;
        padding: 0 14px 8px 0;
        gap: 8px;
        overflow-x: auto;
        border: 0;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lgw-hero__badges::-webkit-scrollbar {
        display: none;
    }

    .lgw-hero__badges span,
    .lgw-hero__badges span:last-child {
        display: grid;
        min-width: 132px;
        min-height: 70px;
        padding: 14px;
        flex: 0 0 132px;
        align-content: center;
        border: 1px solid rgba(255, 255, 255, 0.11);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.045);
        scroll-snap-align: start;
        font-size: 7px;
    }

    .lgw-hero__badges strong {
        font-size: 14px;
    }

    .lgw-hero__media {
        min-height: 0;
        aspect-ratio: 4 / 5;
        border-radius: 3px 3px 48px 3px;
        box-shadow: 0 22px 60px rgba(0, 0, 0, 0.34);
    }

    .lgw-hero__media > img {
        height: 100%;
        transform: scale(1.025);
    }

    .lgw-hero__media figcaption {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .lgw-hero__media figcaption strong {
        font-size: 25px;
    }

    .lgw-play {
        top: 12px;
        right: 12px;
        min-height: 46px;
        padding-right: 13px;
        background: rgba(10, 12, 12, 0.76);
    }

    .lgw-hero__rail {
        min-height: 44px;
        justify-content: flex-start;
        padding: 0 16px;
        gap: 28px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .lgw-hero__rail::-webkit-scrollbar {
        display: none;
    }

    .lgw-marquee {
        padding: 16px 0;
    }

    .lgw-marquee__track {
        gap: 46px;
        animation-duration: 26s;
    }

    .lgw-marquee img {
        max-width: 112px;
        height: 36px;
    }

    .lgw-swipe-cue {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        margin: -18px 0 16px;
        color: var(--lgw-muted);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .lgw-swipe-cue i {
        color: var(--lgw-ink);
        font: normal 21px/1 var(--lgw-body);
        animation: lgwSwipeHint 1.6s ease-in-out infinite;
    }

    .lgw-services .lgw-swipe-cue,
    .lgw-media-strip .lgw-swipe-cue {
        color: rgba(255, 255, 255, 0.48);
    }

    .lgw-services .lgw-swipe-cue i,
    .lgw-media-strip .lgw-swipe-cue i {
        color: var(--lgw-yellow);
    }

    .lgw-project-grid,
    .lgw-bento,
    .lgw-media-strip__grid,
    .lgw-front .lgw-section--tight .lgw-card-grid,
    .lgw-card-grid--mobile-scroll {
        display: flex;
        width: calc(100% + 12px);
        max-width: none;
        min-height: 0;
        margin-right: -12px;
        padding: 0 12px 12px 0;
        gap: 11px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-padding-inline: 0 12px;
        scroll-snap-type: x mandatory;
        overscroll-behavior-inline: contain;
        scrollbar-width: none;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }

    .lgw-project-grid::-webkit-scrollbar,
    .lgw-bento::-webkit-scrollbar,
    .lgw-media-strip__grid::-webkit-scrollbar,
    .lgw-front .lgw-section--tight .lgw-card-grid::-webkit-scrollbar,
    .lgw-card-grid--mobile-scroll::-webkit-scrollbar {
        display: none;
    }

    .lgw-project-card,
    .lgw-project-card--1,
    .lgw-project-card--2 {
        min-height: 0;
        flex: 0 0 min(82vw, 350px);
        aspect-ratio: 4 / 5;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 17px;
    }

    .lgw-project-card > span {
        right: 18px;
        bottom: 18px;
        left: 18px;
    }

    .lgw-project-card strong {
        font-size: 28px;
    }

    .lgw-front .lgw-section--tight .lgw-info-card {
        min-height: 360px;
        flex: 0 0 min(84vw, 360px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .lgw-front .lgw-section--tight .lgw-info-card h3 {
        margin-top: 64px;
    }

    .lgw-card-grid--mobile-scroll .lgw-link-card {
        min-height: 260px;
        flex: 0 0 min(84vw, 360px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
    }

    .lgw-bento-card,
    .lgw-bento-card--wide,
    .lgw-bento-card--full {
        min-height: 440px;
        flex: 0 0 min(86vw, 380px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 19px;
    }

    .lgw-bento-card h3 {
        margin-top: 238px;
        font-size: clamp(39px, 11vw, 52px);
    }

    .lgw-media-strip__item,
    .lgw-media-strip__item:first-child,
    .lgw-media-strip__item:nth-child(2),
    .lgw-media-strip__item:nth-child(3) {
        min-height: 0;
        margin: 0;
        flex: 0 0 min(84vw, 360px);
        aspect-ratio: 4 / 5;
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 17px;
    }

    .lgw-inner-hero {
        padding: calc(104px + env(safe-area-inset-top)) 0 52px;
    }

    .lgw-inner-hero__shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
    }

    .lgw-inner-hero__content {
        padding-top: 0;
    }

    .lgw-inner-hero h1 {
        font-size: clamp(46px, 13.5vw, 69px);
        line-height: 0.93;
    }

    .lgw-inner-hero__content > p:not(.lgw-kicker) {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.6;
    }

    .lgw-inner-hero .lgw-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 24px;
    }

    .lgw-inner-hero .lgw-btn {
        min-width: 0;
        min-height: 52px;
        padding-inline: 13px 9px;
        gap: 8px;
        font-size: 8px;
    }

    .lgw-inner-hero .lgw-btn__icon {
        width: 27px;
        height: 27px;
        flex: 0 0 27px;
    }

    .lgw-inner-hero__media {
        min-height: 0;
        order: 0;
        aspect-ratio: 4 / 3;
        border-radius: 3px 3px 42px 3px;
    }

    .lgw-content-grid,
    .lgw-calculator-layout {
        gap: 38px;
    }

    .lgw-rich-copy p,
    .lgw-rich-copy li {
        font-size: 15px;
        line-height: 1.75;
    }

    .lgw-rich-copy h2 {
        margin-top: 54px;
        font-size: clamp(35px, 10vw, 49px);
    }

    .lgw-side-panel {
        padding: 26px;
        border-radius: 18px;
    }

    .lgw-faq summary {
        min-height: 72px;
        padding: 20px 58px 20px 0;
        overflow: hidden;
        font-size: clamp(19px, 5.7vw, 26px);
        line-height: 1.2;
        touch-action: manipulation;
    }

    .lgw-faq summary::after {
        width: 40px;
        height: 40px;
    }

    .lgw-faq[open] p {
        animation: lgwFaqIn 320ms var(--lgw-ease) both;
    }

    .lgw-calculator {
        gap: 26px;
        padding: 24px 17px;
        border-radius: 20px;
        box-shadow: 0 16px 50px rgba(17, 19, 21, 0.11);
    }

    .lgw-calculator__head h2 {
        font-size: clamp(34px, 10vw, 46px);
    }

    .lgw-calculator input,
    .lgw-enquiry-form input,
    .lgw-enquiry-form select,
    .lgw-enquiry-form textarea {
        min-height: 58px;
        border-radius: 12px;
        font-size: 16px;
    }

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

    .lgw-calculator__results--single {
        grid-template-columns: 1fr;
    }

    .lgw-calculator__results div {
        min-height: 106px;
        padding: 18px;
        align-content: center;
        border-right: 1px solid var(--lgw-line-light);
        border-bottom: 1px solid var(--lgw-line-light);
    }

    .lgw-calculator__results strong {
        font-size: 25px;
    }

    .lgw-calculator__budget {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .lgw-contact-grid {
        gap: 10px;
    }

    .lgw-contact-card {
        min-height: 260px;
        padding: 26px;
        border-radius: 18px;
    }

    .lgw-contact-card h2 {
        margin: 60px 0 16px;
        font-size: clamp(29px, 9vw, 44px);
        overflow-wrap: anywhere;
    }

    .lgw-enquiry-layout {
        gap: 34px;
    }

    .lgw-enquiry-intro h2 {
        font-size: clamp(44px, 13vw, 64px);
    }

    .lgw-enquiry-intro__note {
        margin-top: 36px;
    }

    .lgw-enquiry-shell {
        padding: 24px 17px;
        border-radius: 20px;
    }

    .lgw-enquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .lgw-enquiry-form__submit {
        display: grid;
    }

    .lgw-enquiry-form__submit small {
        max-width: none;
    }

    .lgw-checklist li {
        min-height: 74px;
        grid-template-columns: 34px 1fr;
        padding: 15px 0;
    }

    .lgw-checklist small {
        grid-column: 2;
    }

    .lgw-cta {
        padding: 70px 0;
    }

    .lgw-cta h2,
    .lgw-prefooter h2 {
        font-size: clamp(46px, 13vw, 68px);
    }

    .lgw-prefooter {
        padding: 68px 0;
    }

    .lgw-footer {
        padding-top: 58px;
    }

    .lgw-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 42px 22px;
    }

    .lgw-footer__brand,
    .lgw-footer__contact {
        grid-column: 1 / 3;
    }

    .lgw-footer__column a {
        display: flex;
        min-height: 42px;
        align-items: center;
    }

    .lgw-footer__bottom {
        gap: 12px;
        padding-bottom: 22px;
    }

    .lgw-media-modal {
        padding: 0;
    }

    .lgw-media-modal__dialog {
        width: 100%;
        height: 100vh;
        height: 100dvh;
        max-height: none;
        padding: calc(70px + env(safe-area-inset-top)) 10px calc(16px + env(safe-area-inset-bottom));
        border: 0;
        border-radius: 0;
    }

    .lgw-media-modal__close {
        top: calc(12px + env(safe-area-inset-top));
        right: 12px;
        display: grid;
        min-width: 58px;
        height: 44px;
        place-items: center;
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.1);
    }

    .lgw-media-modal__stage {
        min-height: calc(100dvh - 142px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
        border-radius: 14px;
    }

    .lgw-back-to-top {
        right: 14px;
        bottom: calc(92px + env(safe-area-inset-bottom));
        width: 44px;
        height: 44px;
    }

    .lgw-mobile-dock {
        position: fixed;
        inset: auto 10px calc(8px + env(safe-area-inset-bottom));
        z-index: 980;
        display: grid;
        height: 70px;
        padding: 5px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 22px;
        background: rgba(13, 15, 15, 0.92);
        box-shadow: 0 16px 42px rgba(17, 19, 21, 0.3);
        backdrop-filter: blur(20px) saturate(1.3);
        transform: translateY(0);
        visibility: visible;
        transition: transform 360ms var(--lgw-ease), opacity 220ms ease;
    }

    body.menu-open .lgw-mobile-dock,
    body.form-focus .lgw-mobile-dock,
    body:has(input:focus, textarea:focus, select:focus) .lgw-mobile-dock {
        opacity: 0;
        transform: translateY(calc(120% + env(safe-area-inset-bottom)));
        visibility: hidden;
        pointer-events: none;
    }

    .lgw-mobile-dock a,
    .lgw-mobile-dock button {
        position: relative;
        display: grid;
        min-width: 0;
        padding: 8px 6px;
        place-content: center;
        gap: 2px;
        overflow: hidden;
        border: 0;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        background: transparent;
        color: var(--lgw-white);
        font-family: var(--lgw-body);
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
        cursor: pointer;
        touch-action: manipulation;
    }

    .lgw-mobile-dock a:last-child {
        border-right: 0;
        background: var(--lgw-yellow);
        color: var(--lgw-ink);
    }

    .lgw-mobile-dock a[aria-current="page"] {
        box-shadow: inset 0 0 0 2px var(--lgw-white);
    }

    .lgw-mobile-dock span {
        color: currentColor;
        font-size: 7px;
        font-weight: 800;
        letter-spacing: 0.12em;
        opacity: 0.5;
        text-transform: uppercase;
    }

    .lgw-mobile-dock strong {
        color: currentColor;
        font-family: var(--lgw-head);
        font-size: 14px;
        font-weight: 750;
        letter-spacing: -0.025em;
    }

    .lgw-mobile-dock strong i {
        font-style: normal;
    }

    .lgw-js:not(.lgw-ready) .lgw-header__inner {
        opacity: 0;
        transform: translateY(-14px);
    }

    .lgw-js:not(.lgw-ready) .lgw-mobile-dock {
        opacity: 0;
        transform: translateY(calc(120% + env(safe-area-inset-bottom)));
    }

    /* Keep above-the-fold copy immediately paintable. Scroll-triggered motion
       remains on lower sections, without delaying the mobile LCP element. */
}

@media (max-width: 380px) {
    .lgw-mobile-menu__eyebrow span:last-child {
        display: none;
    }

    .lgw-mobile-nav a {
        min-height: 61px;
        font-size: clamp(32px, 10.4vw, 42px);
    }

    .lgw-hero--home .lgw-btn,
    .lgw-inner-hero .lgw-btn {
        font-size: 7.5px;
    }

    .lgw-mobile-menu__actions {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 920px) and (max-height: 500px) and (pointer: coarse) {
    body {
        padding-bottom: calc(80px + env(safe-area-inset-bottom));
    }

    .lgw-header__inner,
    body:not(.lgw-front) .lgw-header__inner,
    .lgw-header.is-scrolled .lgw-header__inner {
        min-height: 58px;
    }

    .lgw-logo {
        width: 142px;
    }

    .lgw-menu-toggle {
        width: 44px;
        height: 44px;
        flex-basis: 44px;
    }

    .lgw-mobile-menu__panel {
        padding-right: max(22px, env(safe-area-inset-right));
        padding-left: max(22px, env(safe-area-inset-left));
    }

    .lgw-mobile-menu__top {
        margin-right: -22px;
        margin-left: -22px;
        padding-right: max(22px, env(safe-area-inset-right));
        padding-left: max(22px, env(safe-area-inset-left));
    }

    .lgw-mobile-nav {
        grid-template-columns: 1fr 1fr;
        gap: 0 26px;
    }

    .lgw-mobile-nav a {
        min-height: 58px;
        font-size: clamp(30px, 5.2vw, 42px);
    }

    .lgw-mobile-menu__feature,
    .lgw-mobile-menu__actions,
    .lgw-mobile-menu__meta {
        max-width: 640px;
    }

    .lgw-hero--home {
        padding-top: calc(84px + env(safe-area-inset-top));
    }

    .lgw-hero__shell {
        grid-template-columns: minmax(0, 0.92fr) minmax(290px, 0.68fr);
        gap: 28px;
    }

    .lgw-hero--home h1 {
        font-size: clamp(56px, 8.6vw, 74px);
    }

    .lgw-hero__lede {
        margin-top: 18px;
        font-size: 13px;
    }

    .lgw-hero--home .lgw-actions {
        margin-top: 18px;
    }

    .lgw-hero__badges {
        display: none;
    }

    .lgw-hero__media {
        aspect-ratio: 4 / 3;
    }

    .lgw-inner-hero__shell {
        grid-template-columns: minmax(0, 0.95fr) minmax(290px, 0.72fr);
        align-items: center;
    }

    .lgw-inner-hero__media {
        aspect-ratio: 4 / 3;
    }

    .lgw-mobile-dock {
        right: calc(10px + env(safe-area-inset-right));
        bottom: calc(7px + env(safe-area-inset-bottom));
        left: calc(10px + env(safe-area-inset-left));
        height: 62px;
    }
}

@media (hover: none) and (pointer: coarse) {
    .lgw-menu-toggle:active,
    .lgw-btn.is-pressed,
    .lgw-info-card.is-pressed,
    .lgw-link-card.is-pressed,
    .lgw-location-card.is-pressed,
    .lgw-bento-card.is-pressed,
    .lgw-project-card.is-pressed,
    .lgw-media-strip__item.is-pressed,
    .lgw-mobile-dock a.is-pressed,
    .lgw-mobile-dock button.is-pressed,
    .lgw-faq summary.is-pressed {
        transform: scale(0.975);
        transition-duration: 90ms;
    }

    .lgw-project-card.is-pressed img,
    .lgw-media-strip__item.is-pressed img,
    .lgw-bento-card.is-pressed .lgw-media-bg__asset {
        transform: scale(1.035);
        filter: saturate(1.1);
    }

    .lgw-btn,
    .lgw-mobile-nav a,
    .lgw-mobile-dock a,
    .lgw-mobile-dock button,
    .lgw-faq summary {
        -webkit-user-select: none;
        user-select: none;
    }
}

/* Premium direction 2.2 — construction precision with editorial restraint */
:root {
    --lgw-ink: #0b0d0e;
    --lgw-ink-soft: #141718;
    --lgw-paper: #f4f1e8;
    --lgw-paper-deep: #e5e0d3;
    --lgw-white: #fffdf7;
    --lgw-yellow: #ffd400;
    --lgw-yellow-soft: #ffe76a;
    --lgw-line: rgba(11, 13, 14, 0.14);
    --lgw-shadow: 0 32px 80px rgba(11, 13, 14, 0.14), 0 3px 12px rgba(11, 13, 14, 0.06);
}

body {
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(11, 13, 14, 0.025) 50%, transparent calc(50% + 0.5px)),
        var(--lgw-paper);
}

.lgw-header.is-scrolled {
    padding-top: 10px;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
}

.lgw-header.is-scrolled .lgw-header__inner {
    min-height: 70px;
    padding-inline: 18px;
    border: 1px solid rgba(11, 13, 14, 0.09);
    border-radius: 20px;
    background: rgba(255, 253, 247, 0.92);
    box-shadow: 0 18px 48px rgba(11, 13, 14, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(22px) saturate(1.4);
}

.lgw-header__quote,
.lgw-btn {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42), 0 8px 22px rgba(11, 13, 14, 0.12);
}

.lgw-btn {
    isolation: isolate;
    border: 1px solid rgba(11, 13, 14, 0.12);
    transition: transform 360ms var(--lgw-ease), box-shadow 360ms var(--lgw-ease), background 240ms ease;
}

.lgw-btn::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(115deg, rgba(255, 255, 255, 0.24), transparent 38% 72%, rgba(255, 255, 255, 0.12));
    content: "";
    pointer-events: none;
}

.lgw-btn:hover {
    transform: translateY(-4px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 16px 34px rgba(11, 13, 14, 0.18);
}

.lgw-btn__icon {
    box-shadow: inset 0 0 0 1px rgba(11, 13, 14, 0.08);
    transition: transform 380ms var(--lgw-ease-snap), background 240ms ease;
}

.lgw-btn:hover .lgw-btn__icon {
    transform: rotate(45deg) scale(1.06);
}

.lgw-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.lgw-kicker::before {
    width: 20px;
    height: 2px;
    flex: 0 0 20px;
    background: currentColor;
    content: "";
    opacity: 0.55;
}

.lgw-section {
    position: relative;
    isolation: isolate;
}

.lgw-section::after {
    position: absolute;
    top: 26px;
    right: max(22px, calc((100vw - 1460px) / 2));
    z-index: 0;
    color: rgba(11, 13, 14, 0.22);
    content: "LG / " attr(data-section-index);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.16em;
    line-height: 1;
    pointer-events: none;
}

.lgw-section > .lgw-wrap {
    position: relative;
    z-index: 1;
}

.lgw-section--band {
    background:
        radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.78), transparent 25%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 42%),
        var(--lgw-paper-deep);
}

.lgw-section-head h2,
.lgw-intro h2 {
    text-wrap: balance;
}

.lgw-section-head--split {
    padding-top: 24px;
    border-top: 1px solid var(--lgw-line);
}

.lgw-hero--home {
    isolation: isolate;
    background:
        radial-gradient(circle at 72% 22%, rgba(255, 212, 0, 0.16), transparent 24%),
        linear-gradient(138deg, #070909, #141718 64%, #090b0b);
}

.lgw-hero--home::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
    background-size: 82px 82px;
    content: "";
    mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.lgw-hero--home h1 {
    text-shadow: 0 8px 34px rgba(0, 0, 0, 0.24);
}

.lgw-hero--home h1 span {
    background: linear-gradient(100deg, var(--lgw-yellow), #fff078 72%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.lgw-hero__lede {
    padding-left: 20px;
    border-left: 2px solid rgba(255, 212, 0, 0.72);
}

.lgw-hero__media,
.lgw-inner-hero__media {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2px 2px 72px 2px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.32), 12px 12px 0 rgba(255, 212, 0, 0.92);
}

.lgw-inner-hero__media {
    box-shadow: 0 36px 72px rgba(11, 13, 14, 0.2), 12px 12px 0 var(--lgw-yellow);
}

.lgw-hero__media figcaption,
.lgw-inner-hero__media figcaption {
    padding: 16px 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(8, 10, 10, 0.6);
    backdrop-filter: blur(14px);
}

.lgw-hero__badges span {
    border-color: rgba(255, 255, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.025));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lgw-marquee {
    border-block: 1px solid rgba(11, 13, 14, 0.1);
    background: linear-gradient(90deg, var(--lgw-white), #efecdf, var(--lgw-white));
}

.lgw-project-grid,
.lgw-media-strip__grid {
    gap: 14px;
}

.lgw-project-card,
.lgw-media-strip__item,
.lgw-bento-card,
.lgw-service-tile {
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 24px 24px 56px 24px;
    box-shadow: 0 24px 56px rgba(11, 13, 14, 0.2);
}

.lgw-project-card::after,
.lgw-service-tile::after {
    background: linear-gradient(to top, rgba(3, 4, 4, 0.94), rgba(3, 4, 4, 0.08) 68%);
}

.lgw-project-card > span,
.lgw-media-strip__item > span {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.lgw-info-card {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 28px 28px 64px 28px;
    background:
        radial-gradient(circle at var(--spot-x, 85%) var(--spot-y, 12%), rgba(255, 212, 0, 0.15), transparent 28%),
        linear-gradient(145deg, #15191a, #090b0c);
    box-shadow: 0 28px 64px rgba(11, 13, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lgw-info-card:hover {
    transform: translateY(-12px) rotate(-0.35deg);
    background:
        radial-gradient(circle at var(--spot-x, 85%) var(--spot-y, 12%), rgba(255, 212, 0, 0.23), transparent 34%),
        linear-gradient(145deg, #1b2021, #0b0d0e);
}

.lgw-panel,
.lgw-side-panel,
.lgw-link-card,
.lgw-location-card,
.lgw-contact-card,
.lgw-calculator,
.lgw-enquiry-shell,
.lgw-about-numbers__grid > div {
    border: 1px solid rgba(11, 13, 14, 0.1);
    background:
        radial-gradient(circle at var(--spot-x, 92%) var(--spot-y, 4%), rgba(255, 255, 255, 0.92), transparent 24%),
        linear-gradient(145deg, rgba(255, 253, 247, 0.98), rgba(239, 235, 224, 0.88));
    box-shadow: 0 22px 56px rgba(11, 13, 14, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.lgw-panel:first-child,
.lgw-side-panel {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at var(--spot-x, 88%) var(--spot-y, 8%), rgba(255, 212, 0, 0.12), transparent 30%),
        linear-gradient(145deg, #171a1b, #090b0c);
    box-shadow: 0 30px 74px rgba(11, 13, 14, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lgw-panel,
.lgw-side-panel,
.lgw-calculator,
.lgw-enquiry-shell {
    border-radius: 30px 30px 72px 30px;
}

.lgw-link-card,
.lgw-location-card {
    min-height: 270px;
    border-radius: 24px 24px 48px 24px;
}

.lgw-link-card::before,
.lgw-location-card::before {
    border: 0;
    background: var(--lgw-ink);
    color: var(--lgw-white);
    box-shadow: 0 10px 24px rgba(11, 13, 14, 0.16);
}

.lgw-link-card:hover,
.lgw-location-card:hover {
    transform: translateY(-10px) rotate(-0.25deg);
    background:
        radial-gradient(circle at var(--spot-x, 92%) var(--spot-y, 4%), rgba(255, 255, 255, 1), transparent 28%),
        linear-gradient(145deg, var(--lgw-white), #eee9dc);
    box-shadow: 0 34px 76px rgba(11, 13, 14, 0.16);
}

.lgw-link-card:hover::before,
.lgw-location-card:hover::before {
    color: var(--lgw-ink);
}

.lgw-service-tile {
    min-height: 620px;
}

.lgw-service-tile::before {
    position: absolute;
    inset: 14px;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px 16px 44px 16px;
    content: "";
    pointer-events: none;
}

.lgw-bento-card {
    isolation: isolate;
}

.lgw-bento-card::after {
    position: absolute;
    inset: 14px;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px 16px 42px 16px;
    content: "";
    pointer-events: none;
}

.lgw-bento-card__arrow {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.lgw-point-grid {
    border-radius: 20px 20px 44px 20px;
    box-shadow: 0 18px 44px rgba(11, 13, 14, 0.08);
}

.lgw-point-grid span,
.lgw-point-grid a {
    background: linear-gradient(145deg, var(--lgw-white), #f0ecdf);
}

.lgw-faqs {
    display: grid;
    gap: 10px;
}

.lgw-faq,
.lgw-faq:last-child {
    overflow: hidden;
    border: 1px solid var(--lgw-line);
    border-radius: 18px;
    background: rgba(255, 253, 247, 0.72);
    transition: background 260ms ease, box-shadow 260ms ease, transform 260ms var(--lgw-ease);
}

.lgw-faq[open] {
    background: var(--lgw-white);
    box-shadow: 0 20px 48px rgba(11, 13, 14, 0.1);
    transform: translateX(6px);
}

.lgw-faq summary {
    padding-inline: 26px 78px;
}

.lgw-faq summary::after {
    right: 18px;
    border: 0;
    background: var(--lgw-ink);
    color: var(--lgw-white);
}

.lgw-faq p {
    padding-inline: 26px;
}

.lgw-calculator input,
.lgw-enquiry-form input,
.lgw-enquiry-form select,
.lgw-enquiry-form textarea {
    border-color: rgba(11, 13, 14, 0.14);
    background: rgba(244, 241, 232, 0.78);
    box-shadow: inset 0 1px 2px rgba(11, 13, 14, 0.04);
}

.lgw-calculator__results {
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px 20px 42px 20px;
    background: linear-gradient(145deg, #161a1b, #080a0a);
    box-shadow: 0 24px 52px rgba(11, 13, 14, 0.2);
}

.lgw-calculator__budget {
    border: 1px solid rgba(11, 13, 14, 0.12);
    border-radius: 20px 20px 44px 20px;
    background: linear-gradient(135deg, var(--lgw-yellow), #ffe96d);
    box-shadow: 0 22px 48px rgba(134, 112, 0, 0.18);
}

.lgw-contact-card {
    border-radius: 28px 28px 64px 28px;
}

.lgw-contact-card:nth-child(1) {
    background: linear-gradient(135deg, var(--lgw-yellow), #ffe96a);
}

.lgw-contact-card:nth-child(4) {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        radial-gradient(circle at var(--spot-x, 86%) var(--spot-y, 8%), rgba(255, 212, 0, 0.14), transparent 28%),
        linear-gradient(145deg, #171a1b, #090b0c);
}

.lgw-cta {
    background:
        linear-gradient(rgba(11, 13, 14, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 13, 14, 0.06) 1px, transparent 1px),
        linear-gradient(135deg, var(--lgw-yellow), #ffe56a);
    background-size: 54px 54px, 54px 54px, auto;
}

.lgw-cta::before,
.lgw-cta::after {
    box-shadow: 0 0 0 54px rgba(255, 255, 255, 0.055);
}

.lgw-prefooter {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 212, 0, 0.09), transparent 22%),
        linear-gradient(140deg, #151819, #080a0a);
    color: rgba(255, 255, 255, 0.62);
}

.lgw-prefooter::after {
    position: absolute;
    right: -3vw;
    bottom: -0.35em;
    color: rgba(255, 255, 255, 0.025);
    content: "LG";
    font-family: var(--lgw-head);
    font-size: clamp(260px, 34vw, 620px);
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 0.7;
    pointer-events: none;
}

.lgw-prefooter__grid {
    position: relative;
    z-index: 1;
}

.lgw-prefooter h2 {
    color: var(--lgw-white);
}

.lgw-prefooter .lgw-kicker {
    color: var(--lgw-yellow);
}

.lgw-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(90deg, transparent calc(25% - 0.5px), rgba(255, 255, 255, 0.035) 25%, transparent calc(25% + 0.5px)),
        #070808;
}

.lgw-mobile-menu__panel {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.lgw-mobile-menu__top {
    flex: 0 0 auto;
}

.lgw-mobile-menu__scroll {
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.lgw-mobile-menu__scroll::-webkit-scrollbar {
    display: none;
}

.lgw-mobile-menu__scrollbar {
    position: absolute;
    top: 112px;
    right: 7px;
    bottom: 26px;
    z-index: 8;
    width: 2px;
    overflow: hidden;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.08);
    opacity: 0;
    transition: opacity 220ms ease;
}

.lgw-mobile-menu__panel.has-overflow .lgw-mobile-menu__scrollbar {
    opacity: 1;
}

.lgw-mobile-menu__scrollbar span {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: var(--lgw-yellow);
    transform: scaleY(0.12);
    transform-origin: top;
}

@media (max-width: 800px), (max-width: 920px) and (max-height: 500px) and (pointer: coarse) {
    :root {
        --lgw-wrap: calc(100% - 24px);
        --lgw-narrow: calc(100% - 24px);
    }

    body {
        padding-bottom: calc(82px + env(safe-area-inset-bottom));
    }

    .lgw-header,
    .lgw-header.is-scrolled {
        padding-top: max(7px, env(safe-area-inset-top));
    }

    .lgw-header__inner,
    body:not(.lgw-front) .lgw-header__inner,
    .lgw-header.is-scrolled .lgw-header__inner {
        width: calc(100% - 16px);
        min-height: 62px;
        padding: 0 7px 0 13px;
        border-color: rgba(11, 13, 14, 0.11);
        border-radius: 21px;
        box-shadow: 0 14px 40px rgba(11, 13, 14, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.72);
    }

    .lgw-front .lgw-header:not(.is-scrolled) .lgw-header__inner {
        background: rgba(9, 11, 11, 0.84);
        box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .lgw-menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), 0 10px 24px rgba(0, 0, 0, 0.18);
    }

    .lgw-mobile-menu__panel {
        display: grid;
        height: 100dvh;
        padding: 0;
        grid-template-rows: auto minmax(0, 1fr);
        border-radius: 24px;
        background:
            radial-gradient(circle at 90% 9%, rgba(255, 212, 0, 0.16), transparent 24%),
            linear-gradient(rgba(255, 255, 255, 0.027) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.027) 1px, transparent 1px),
            linear-gradient(145deg, #151819, #080a0a 72%);
        background-size: auto, 52px 52px, 52px 52px, auto;
    }

    .lgw-mobile-menu__top {
        position: relative;
        top: auto;
        min-height: calc(76px + env(safe-area-inset-top));
        margin: 0;
        padding: calc(12px + env(safe-area-inset-top)) 14px 10px 16px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.09);
        background: rgba(8, 10, 10, 0.72);
        backdrop-filter: blur(18px);
    }

    .lgw-mobile-menu__top .lgw-logo {
        width: 148px;
    }

    .lgw-menu-close {
        min-width: 98px;
        min-height: 46px;
        background: rgba(255, 255, 255, 0.075);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .lgw-mobile-menu__scroll {
        position: relative;
        padding: 11px 16px calc(22px + env(safe-area-inset-bottom));
        scroll-padding-top: 10px;
    }

    .lgw-mobile-menu__eyebrow {
        min-height: 28px;
        margin: 0 0 4px;
        padding: 0 2px 7px;
        font-size: 7px;
    }

    .lgw-mobile-nav {
        gap: 3px;
    }

    .lgw-mobile-nav a {
        min-height: 49px;
        padding: 7px 10px;
        grid-template-columns: 28px 1fr 28px;
        border: 1px solid transparent;
        border-radius: 13px;
        font-size: clamp(29px, 8.7vw, 39px);
        line-height: 0.94;
    }

    .lgw-mobile-nav a::before {
        font-size: 7px;
    }

    .lgw-mobile-nav a > i {
        width: 27px;
        height: 27px;
        background: rgba(255, 255, 255, 0.06);
    }

    .lgw-mobile-nav a[aria-current="page"] {
        border-color: rgba(255, 212, 0, 0.34);
        background: linear-gradient(90deg, rgba(255, 212, 0, 0.16), rgba(255, 212, 0, 0.025));
        color: var(--lgw-yellow);
    }

    .lgw-mobile-menu__actions {
        gap: 7px;
        margin-top: 10px;
    }

    .lgw-mobile-menu__actions .lgw-btn {
        min-height: 48px;
        border-radius: 15px;
    }

    .lgw-mobile-menu__feature {
        position: relative;
        min-height: 102px;
        margin-top: 9px;
        padding: 15px 112px 14px 16px;
        overflow: hidden;
        border: 1px solid rgba(255, 212, 0, 0.2);
        border-radius: 17px 17px 38px 17px;
        background: linear-gradient(125deg, rgba(255, 212, 0, 0.15), rgba(255, 255, 255, 0.035));
    }

    .lgw-mobile-menu__feature::after {
        position: absolute;
        right: 14px;
        bottom: -16px;
        width: 78px;
        height: 78px;
        border: 1px solid rgba(255, 212, 0, 0.2);
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 212, 0, 0.16) 0 3px, transparent 4px), linear-gradient(90deg, transparent 49%, rgba(255, 212, 0, 0.18) 50%, transparent 51%), linear-gradient(transparent 49%, rgba(255, 212, 0, 0.18) 50%, transparent 51%);
        content: "";
        transform: rotate(-12deg);
    }

    .lgw-mobile-menu__feature > * {
        position: relative;
        z-index: 1;
    }

    .lgw-mobile-menu__feature > span {
        font-size: 7px;
    }

    .lgw-mobile-menu__feature strong {
        margin-top: 4px;
        font-size: clamp(19px, 5.5vw, 24px);
        line-height: 0.98;
    }

    .lgw-mobile-menu__feature a {
        min-height: 28px;
        margin-top: 4px;
        font-size: 8px;
    }

    .lgw-mobile-menu__meta {
        min-height: 42px;
        margin-top: 8px;
        padding: 8px 2px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.09);
        font-size: 8px;
    }

    .lgw-mobile-menu__scrollbar {
        top: calc(88px + env(safe-area-inset-top));
        right: 5px;
        bottom: calc(18px + env(safe-area-inset-bottom));
        opacity: 0.42;
    }

    .lgw-section {
        padding-block: 72px;
    }

    .lgw-section::after {
        top: 22px;
        right: 14px;
        font-size: 7px;
    }

    .lgw-section-head {
        margin-bottom: 38px;
    }

    .lgw-section-head h2 {
        font-size: clamp(45px, 13vw, 62px);
        line-height: 0.91;
    }

    .lgw-kicker::before {
        width: 14px;
        flex-basis: 14px;
    }

    .lgw-hero--home {
        padding: calc(102px + env(safe-area-inset-top)) 0 60px;
    }

    .lgw-hero--home::before {
        background-size: 46px 46px;
    }

    .lgw-hero--home .lgw-kicker {
        padding: 7px 10px;
        border: 1px solid rgba(255, 255, 255, 0.13);
        border-radius: 100px;
        background: rgba(255, 255, 255, 0.04);
    }

    .lgw-hero--home h1 {
        margin-top: 22px;
        font-size: clamp(60px, 18vw, 78px);
        line-height: 0.84;
    }

    .lgw-hero__lede {
        max-width: 34em;
        padding-left: 15px;
        font-size: 14px;
    }

    .lgw-hero__badges {
        display: grid;
        margin: 24px 0 0;
        padding: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        overflow: visible;
    }

    .lgw-hero__badges span,
    .lgw-hero__badges span:last-child {
        min-width: 0;
        min-height: 72px;
        padding: 10px;
        border-radius: 14px;
        font-size: 6px;
    }

    .lgw-hero__badges strong {
        font-size: 12px;
    }

    .lgw-hero__media {
        aspect-ratio: 0.9;
        border-radius: 20px 20px 62px 20px;
        box-shadow: 0 30px 68px rgba(0, 0, 0, 0.34), 7px 7px 0 rgba(255, 212, 0, 0.95);
    }

    .lgw-inner-hero__media {
        border-radius: 18px 18px 54px 18px;
        box-shadow: 0 28px 58px rgba(11, 13, 14, 0.2), 7px 7px 0 var(--lgw-yellow);
    }

    .lgw-hero__media figcaption,
    .lgw-inner-hero__media figcaption {
        right: 14px;
        bottom: 14px;
        left: 14px;
        padding: 13px 14px;
        border-radius: 12px;
    }

    .lgw-project-card,
    .lgw-media-strip__item,
    .lgw-bento-card,
    .lgw-service-tile {
        border-radius: 20px 20px 48px 20px;
        box-shadow: 0 20px 44px rgba(11, 13, 14, 0.2);
    }

    .lgw-project-card,
    .lgw-project-card--1,
    .lgw-project-card--2 {
        flex-basis: min(84vw, 356px);
    }

    .lgw-info-card {
        min-height: 390px;
        border-radius: 22px 22px 52px 22px;
    }

    .lgw-panel,
    .lgw-side-panel,
    .lgw-calculator,
    .lgw-enquiry-shell {
        border-radius: 22px 22px 54px 22px;
    }

    .lgw-link-card,
    .lgw-location-card,
    .lgw-contact-card {
        border-radius: 20px 20px 48px 20px;
    }

    .lgw-link-card,
    .lgw-location-card {
        min-height: 280px;
    }

    .lgw-faq,
    .lgw-faq:last-child {
        border-radius: 15px;
    }

    .lgw-faq summary {
        padding-inline: 18px 66px;
    }

    .lgw-faq summary::after {
        right: 12px;
    }

    .lgw-faq p {
        padding-inline: 18px;
    }

    .lgw-mobile-dock {
        inset: auto 8px max(8px, env(safe-area-inset-bottom));
        height: 66px;
        border-radius: 22px;
        background: rgba(8, 10, 10, 0.94);
        box-shadow: 0 20px 46px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .lgw-mobile-dock a,
    .lgw-mobile-dock button {
        border-radius: 15px;
    }

    .lgw-mobile-dock a:last-child,
    .lgw-mobile-dock a[aria-current="page"] {
        background: linear-gradient(135deg, var(--lgw-yellow), #ffe767);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    }

    .lgw-prefooter {
        padding-block: 78px;
    }
}

@media (max-width: 380px) {
    .lgw-mobile-nav a {
        min-height: 47px;
        font-size: clamp(27px, 8.4vw, 34px);
    }

    .lgw-mobile-menu__feature {
        min-height: 94px;
        padding-top: 12px;
        padding-bottom: 11px;
    }

    .lgw-mobile-menu__meta {
        font-size: 7px;
    }
}

@media (max-width: 920px) and (max-height: 500px) and (pointer: coarse) {
    .lgw-mobile-menu__panel {
        grid-template-rows: auto minmax(0, 1fr);
    }

    .lgw-mobile-menu__top {
        min-height: calc(64px + env(safe-area-inset-top));
        padding-top: calc(7px + env(safe-area-inset-top));
        padding-bottom: 7px;
    }

    .lgw-mobile-menu__scroll {
        padding-top: 8px;
        columns: 2;
        column-gap: 22px;
    }

    .lgw-mobile-menu__eyebrow,
    .lgw-mobile-nav,
    .lgw-mobile-menu__actions,
    .lgw-mobile-menu__feature,
    .lgw-mobile-menu__meta {
        break-inside: avoid;
    }

    .lgw-mobile-nav {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lgw-mobile-nav a {
        min-height: 43px;
        font-size: clamp(25px, 4vw, 34px);
    }

    .lgw-mobile-menu__feature {
        margin-top: 0;
    }
}

/* Cinematic homepage hero 2.4 */
.lgw-hero--cinematic {
    --hero-shift: 0px;
    --hero-fade: 1;
    --hero-pointer-x: 72%;
    --hero-pointer-y: 30%;
    min-height: max(780px, 100svh);
    padding: 0 0 54px;
    isolation: isolate;
    background: #080a0a;
}

.lgw-hero--cinematic::before {
    display: none;
}

.lgw-hero-cinema {
    position: absolute;
    inset: -5% 0 -7%;
    z-index: -2;
    overflow: hidden;
    background: #080a0a;
}

.lgw-hero-cinema__poster,
.lgw-hero-cinema__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 54% 48%;
    transform: translate3d(0, calc(var(--hero-shift) * 0.42), 0) scale(1.095);
    transform-origin: center;
    filter: saturate(0.82) contrast(1.08) brightness(0.78);
    will-change: transform;
}

.lgw-hero-cinema__poster {
    opacity: 1;
}

.lgw-hero-cinema__video {
    z-index: 1;
    opacity: 0;
    transition: opacity 1.2s ease, filter 700ms ease;
}

.lgw-hero--cinematic.is-video-ready .lgw-hero-cinema__video {
    opacity: 1;
}

.lgw-hero--cinematic.is-video-paused .lgw-hero-cinema__video {
    filter: saturate(0.7) contrast(1.08) brightness(0.7);
}

.lgw-hero-cinema__scrim,
.lgw-hero-cinema__grid,
.lgw-hero-cinema__glow {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.lgw-hero-cinema__scrim {
    background:
        linear-gradient(90deg, rgba(5, 7, 7, 0.98) 0%, rgba(5, 7, 7, 0.82) 31%, rgba(5, 7, 7, 0.2) 64%, rgba(5, 7, 7, 0.45) 100%),
        linear-gradient(180deg, rgba(5, 7, 7, 0.72) 0%, transparent 25%, transparent 61%, rgba(5, 7, 7, 0.93) 91%, #070909 100%);
}

.lgw-hero-cinema__grid {
    opacity: 0.34;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.085) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.085) 1px, transparent 1px);
    background-size: clamp(62px, 5.7vw, 92px) clamp(62px, 5.7vw, 92px);
    mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72), transparent 61%);
    transform: translate3d(0, calc(var(--hero-shift) * 0.17), 0);
}

.lgw-hero-cinema__glow {
    background:
        radial-gradient(circle at var(--hero-pointer-x) var(--hero-pointer-y), rgba(255, 212, 0, 0.19), transparent 19%),
        linear-gradient(118deg, transparent 51%, rgba(255, 212, 0, 0.06) 51.15%, transparent 51.3%);
    mix-blend-mode: screen;
    transition: background-position 180ms linear;
}

.lgw-hero--cinematic .lgw-hero__shell {
    position: relative;
    z-index: 3;
    display: grid;
    min-height: max(726px, calc(100svh - 54px));
    padding: clamp(148px, 15vh, 188px) 0 40px;
    grid-template-columns: minmax(0, 1fr) minmax(292px, 360px);
    grid-template-rows: minmax(380px, 1fr) auto;
    align-items: center;
    column-gap: clamp(54px, 8vw, 130px);
    row-gap: 46px;
}

.lgw-hero--cinematic .lgw-hero__inner {
    width: min(100%, 880px);
    max-width: none;
    opacity: var(--hero-fade);
    transform: translate3d(0, calc(var(--hero-shift) * -0.11), 0);
    will-change: opacity, transform;
}

.lgw-hero--cinematic .lgw-kicker {
    margin: 0 0 25px;
    padding: 8px 13px 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    background: rgba(10, 13, 13, 0.44);
    color: rgba(255, 255, 255, 0.76);
    font-size: 8px;
    letter-spacing: 0.18em;
    backdrop-filter: blur(12px);
}

.lgw-hero--cinematic .lgw-kicker::before {
    width: 7px;
    height: 7px;
    flex-basis: 7px;
    border-radius: 50%;
    background: var(--lgw-yellow);
    box-shadow: 0 0 0 5px rgba(255, 212, 0, 0.1);
    opacity: 1;
}

.lgw-hero--cinematic h1 {
    max-width: 1040px;
    margin: 0;
    padding-bottom: 0.1em;
    font-size: clamp(76px, 8.6vw, 138px);
    letter-spacing: -0.072em;
    line-height: 0.84;
    text-wrap: nowrap;
    text-shadow: 0 14px 48px rgba(0, 0, 0, 0.35);
}

.lgw-hero--cinematic h1 span,
.lgw-hero--cinematic h1 strong {
    display: block;
}

.lgw-hero--cinematic h1 span {
    padding-left: 0.045em;
    background: none;
    color: rgba(255, 253, 247, 0.97);
    font-size: 0.58em;
    font-style: normal;
    font-weight: 570;
    letter-spacing: -0.045em;
    -webkit-text-fill-color: currentColor;
}

.lgw-hero--cinematic h1 strong {
    margin-top: 0.035em;
    padding-bottom: 0.09em;
    background: linear-gradient(102deg, #ffd400 5%, #fff078 58%, #f7c900 100%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 820;
    -webkit-text-fill-color: transparent;
}

.lgw-hero--cinematic .lgw-hero__lede {
    max-width: 660px;
    margin-top: 30px;
    padding-left: 20px;
    border-left: 2px solid var(--lgw-yellow);
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp(15px, 1.35vw, 19px);
    line-height: 1.58;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.7);
}

.lgw-hero--cinematic .lgw-actions {
    margin-top: 29px;
}

.lgw-hero--cinematic .lgw-btn {
    min-height: 56px;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 18px 46px rgba(0, 0, 0, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.lgw-hero--cinematic .lgw-btn--ghost {
    background: rgba(10, 13, 13, 0.38);
    color: var(--lgw-white);
    backdrop-filter: blur(15px);
}

.lgw-hero__assurance {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 26px;
    margin: 26px 0 0;
    color: rgba(255, 255, 255, 0.55);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.lgw-hero__assurance span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.lgw-hero__assurance span::before {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--lgw-yellow);
    box-shadow: 0 0 0 4px rgba(255, 212, 0, 0.08);
    content: "";
}

.lgw-hero__film-card {
    position: relative;
    display: grid;
    width: 100%;
    padding: 9px;
    align-self: end;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 3px 3px 54px 3px;
    overflow: hidden;
    background: rgba(9, 12, 12, 0.58);
    color: var(--lgw-white);
    text-align: left;
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.32), 7px 7px 0 rgba(255, 212, 0, 0.88), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translate3d(0, calc(var(--hero-shift) * -0.2), 0);
    cursor: pointer;
    backdrop-filter: blur(18px) saturate(1.16);
    transition: border-color 320ms ease, box-shadow 420ms var(--lgw-ease), transform 420ms var(--lgw-ease);
    will-change: transform;
}

.lgw-hero__film-card::before {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 3;
    color: rgba(255, 255, 255, 0.72);
    content: "LG / FILM 01";
    font-size: 7px;
    font-weight: 900;
    letter-spacing: 0.16em;
}

.lgw-hero__film-card:hover {
    border-color: rgba(255, 212, 0, 0.7);
    box-shadow: 0 42px 92px rgba(0, 0, 0, 0.43), 10px 10px 0 var(--lgw-yellow), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translate3d(0, calc((var(--hero-shift) * -0.2) - 8px), 0);
}

.lgw-hero__film-preview {
    position: relative;
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: 1px 1px 34px 1px;
    background: #171a1a;
}

.lgw-hero__film-preview::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4, 6, 6, 0.28), transparent 45%, rgba(4, 6, 6, 0.56));
    content: "";
}

.lgw-hero__film-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.74) contrast(1.08);
    transform: scale(1.02);
    transition: filter 480ms ease, transform 650ms var(--lgw-ease);
}

.lgw-hero__film-card:hover .lgw-hero__film-preview img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.075);
}

.lgw-hero__film-preview i {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 2;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    background: var(--lgw-yellow);
    color: var(--lgw-ink);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 7px rgba(255, 212, 0, 0.14);
    font-size: 13px;
    font-style: normal;
    text-indent: 2px;
    transition: transform 420ms var(--lgw-ease-snap);
}

.lgw-hero__film-card:hover .lgw-hero__film-preview i {
    transform: scale(1.08) rotate(4deg);
}

.lgw-hero__film-copy {
    display: grid;
    padding: 18px 17px 17px;
    gap: 5px;
}

.lgw-hero__film-copy small,
.lgw-hero__film-copy em {
    color: rgba(255, 255, 255, 0.5);
    font-size: 7px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.lgw-hero__film-copy strong {
    font-family: var(--lgw-head);
    font-size: clamp(23px, 2.05vw, 31px);
    letter-spacing: -0.04em;
    line-height: 1;
}

.lgw-hero__film-copy em {
    margin-top: 9px;
    color: var(--lgw-yellow);
}

.lgw-hero__ledger {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: end;
    border-top: 1px solid rgba(255, 255, 255, 0.19);
}

.lgw-hero__ledger > span {
    display: grid;
    min-height: 72px;
    padding: 16px 24px 0 0;
    align-content: start;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.lgw-hero__ledger > span:not(:first-child) {
    padding-left: 24px;
}

.lgw-hero__ledger > span:last-child {
    border-right: 0;
}

.lgw-hero__ledger small {
    color: rgba(255, 255, 255, 0.64);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lgw-hero__ledger strong {
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--lgw-head);
    font-size: clamp(17px, 1.65vw, 23px);
    letter-spacing: -0.03em;
}

.lgw-hero__coordinates {
    position: absolute;
    top: 48%;
    right: 18px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 6px;
    font-weight: 900;
    letter-spacing: 0.17em;
    text-transform: uppercase;
    transform: rotate(90deg) translateX(50%);
    transform-origin: right center;
}

.lgw-hero__coordinates i {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.lgw-hero--cinematic .lgw-scroll-cue {
    bottom: 128px;
    left: -25px;
    z-index: 4;
    transform: rotate(-90deg);
    transform-origin: left center;
}

.lgw-hero__motion {
    position: absolute;
    right: max(28px, calc((100vw - 1460px) / 2));
    bottom: 61px;
    z-index: 6;
    display: inline-flex;
    min-height: 35px;
    padding: 0 13px 0 8px;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 100px;
    background: rgba(8, 10, 10, 0.58);
    color: rgba(255, 255, 255, 0.72);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    cursor: pointer;
    backdrop-filter: blur(15px);
}

.lgw-hero__motion[hidden] {
    display: none;
}

.lgw-hero__motion i {
    display: block;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--lgw-yellow) 0 36%, transparent 36% 55%, var(--lgw-yellow) 55% 91%);
    box-shadow: 0 0 0 1px rgba(255, 212, 0, 0.24);
    transform: scale(0.42);
}

.lgw-hero__motion[aria-pressed="true"] i {
    background: var(--lgw-yellow);
    clip-path: polygon(16% 7%, 92% 50%, 16% 93%);
}

.lgw-hero--cinematic .lgw-hero__rail {
    z-index: 5;
    min-height: 54px;
    padding-inline: 24px;
    background: rgba(7, 9, 9, 0.72);
    color: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(16px);
}

@media (max-width: 1120px) {
    .lgw-hero--cinematic .lgw-hero__shell {
        grid-template-columns: minmax(0, 1fr) minmax(270px, 320px);
        column-gap: 46px;
    }

    .lgw-hero--cinematic h1 {
        font-size: clamp(72px, 9.2vw, 106px);
    }

    .lgw-hero__coordinates,
    .lgw-hero--cinematic .lgw-scroll-cue {
        display: none;
    }
}

@media (max-width: 800px) {
    .lgw-hero--cinematic {
        min-height: max(870px, 100svh);
        padding: 0 0 50px;
    }

    .lgw-hero-cinema {
        inset: -2% 0 -4%;
    }

    .lgw-hero-cinema__poster,
    .lgw-hero-cinema__video {
        object-position: 61% center;
        transform: translate3d(0, calc(var(--hero-shift) * 0.24), 0) scale(1.08);
        filter: saturate(0.72) contrast(1.08) brightness(0.66);
    }

    .lgw-hero-cinema__scrim {
        background:
            linear-gradient(90deg, rgba(5, 7, 7, 0.92), rgba(5, 7, 7, 0.38)),
            linear-gradient(180deg, rgba(5, 7, 7, 0.7) 0%, rgba(5, 7, 7, 0.2) 27%, rgba(5, 7, 7, 0.68) 60%, #070909 88%, #070909 100%);
    }

    .lgw-hero-cinema__grid {
        background-size: 52px 52px;
        mask-image: linear-gradient(180deg, black, transparent 76%);
        opacity: 0.24;
    }

    .lgw-hero--cinematic .lgw-hero__shell {
        min-height: max(820px, calc(100svh - 50px));
        padding: calc(112px + env(safe-area-inset-top)) 0 38px;
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: auto auto auto;
        align-content: start;
        gap: 30px;
    }

    .lgw-hero--cinematic .lgw-hero__inner {
        width: 100%;
        opacity: 1;
        transform: none;
    }

    .lgw-hero--cinematic .lgw-kicker {
        margin-bottom: 20px;
        font-size: 7px;
    }

    .lgw-hero--cinematic h1 {
        font-size: clamp(58px, 17vw, 76px);
        line-height: 0.84;
        text-wrap: nowrap;
    }

    .lgw-hero--cinematic h1 span {
        font-size: 0.56em;
    }

    .lgw-hero--cinematic .lgw-hero__lede {
        max-width: 36em;
        margin-top: 24px;
        padding-left: 15px;
        font-size: 14px;
        line-height: 1.5;
    }

    .lgw-hero--cinematic .lgw-actions {
        display: grid;
        margin-top: 24px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .lgw-hero--cinematic .lgw-btn {
        min-width: 0;
        min-height: 52px;
        padding-inline: 14px 10px;
        gap: 8px;
        font-size: 7.5px;
    }

    .lgw-hero__assurance {
        gap: 9px 16px;
        margin-top: 20px;
        font-size: 6px;
    }

    .lgw-hero__film-card {
        display: grid;
        width: min(100%, 520px);
        padding: 7px;
        grid-template-columns: minmax(116px, 0.78fr) minmax(0, 1.22fr);
        align-self: start;
        border-radius: 2px 2px 34px 2px;
        box-shadow: 0 24px 54px rgba(0, 0, 0, 0.34), 5px 5px 0 rgba(255, 212, 0, 0.9);
        transform: none;
    }

    .lgw-hero__film-card::before {
        top: 15px;
        left: 15px;
        font-size: 5px;
    }

    .lgw-hero__film-card:hover,
    .lgw-hero__film-card:active {
        transform: translateY(-3px);
    }

    .lgw-hero__film-preview {
        min-height: 126px;
        aspect-ratio: auto;
        border-radius: 1px 1px 24px 1px;
    }

    .lgw-hero__film-preview i {
        right: 12px;
        bottom: 12px;
        width: 42px;
        height: 42px;
        font-size: 10px;
    }

    .lgw-hero__film-copy {
        align-content: center;
        padding: 14px;
    }

    .lgw-hero__film-copy strong {
        font-size: clamp(20px, 6vw, 28px);
    }

    .lgw-hero__film-copy em {
        margin-top: 5px;
        font-size: 6px;
    }

    .lgw-hero__ledger {
        gap: 0;
    }

    .lgw-hero__ledger > span,
    .lgw-hero__ledger > span:not(:first-child) {
        min-height: 59px;
        padding: 11px 8px 0;
    }

    .lgw-hero__ledger > span:first-child {
        padding-left: 0;
    }

    .lgw-hero__ledger small {
        font-size: 7px;
        letter-spacing: 0.11em;
    }

    .lgw-hero__ledger strong {
        font-size: clamp(13px, 3.8vw, 17px);
    }

    .lgw-hero__motion,
    .lgw-hero__coordinates,
    .lgw-hero--cinematic .lgw-scroll-cue {
        display: none !important;
    }

    .lgw-hero--cinematic .lgw-hero__rail {
        min-height: 50px;
        padding-inline: 16px;
        justify-content: flex-start;
        gap: 26px;
        overflow-x: auto;
        white-space: nowrap;
        scrollbar-width: none;
    }

    .lgw-hero--cinematic .lgw-hero__rail::-webkit-scrollbar {
        display: none;
    }
}

@media (max-width: 380px) {
    .lgw-hero--cinematic h1 {
        font-size: clamp(54px, 16.8vw, 64px);
    }

    .lgw-hero--cinematic .lgw-hero__lede {
        font-size: 13px;
    }

    .lgw-hero__assurance {
        gap: 8px 12px;
    }

    .lgw-hero__film-card {
        grid-template-columns: 110px minmax(0, 1fr);
    }

    .lgw-hero__film-copy {
        padding: 10px;
    }
}

@media (max-width: 920px) and (max-height: 500px) and (pointer: coarse) {
    .lgw-hero--cinematic {
        min-height: 520px;
    }

    .lgw-hero--cinematic .lgw-hero__shell {
        min-height: 470px;
        padding: calc(80px + env(safe-area-inset-top)) max(0px, env(safe-area-inset-right)) 66px max(0px, env(safe-area-inset-left));
        grid-template-columns: minmax(0, 1fr) minmax(238px, 0.68fr);
        grid-template-rows: 1fr;
        align-items: center;
        gap: 26px;
    }

    .lgw-hero--cinematic h1 {
        font-size: clamp(49px, 8.4vw, 67px);
    }

    .lgw-hero--cinematic .lgw-kicker {
        margin-bottom: 12px;
    }

    .lgw-hero--cinematic .lgw-hero__lede {
        max-width: 43em;
        margin-top: 14px;
        font-size: 11px;
        line-height: 1.42;
    }

    .lgw-hero--cinematic .lgw-actions {
        display: none;
    }

    .lgw-hero--cinematic .lgw-btn {
        min-height: 43px;
    }

    .lgw-hero__assurance,
    .lgw-hero__ledger {
        display: none;
    }

    .lgw-hero__film-card {
        display: grid;
        grid-template-columns: 1fr;
        align-self: center;
    }

    .lgw-hero__film-preview {
        min-height: 112px;
        aspect-ratio: 16 / 8.5;
    }

    .lgw-hero__film-copy {
        display: none;
    }

    .lgw-hero__motion {
        display: none !important;
    }
}

/* Homepage authority and conversion pass 2.5 */
.lgw-home .lgw-intro {
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 212, 0, 0.1), transparent 20%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.46), transparent 42%),
        var(--lgw-paper);
}

.lgw-home .lgw-intro .lgw-copy a {
    color: var(--lgw-ink);
    font-weight: 800;
    text-decoration-color: rgba(255, 212, 0, 0.82);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

.lgw-stats--home {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lgw-stats--home div {
    min-width: 0;
    padding-right: 14px;
}

.lgw-stats--home div + div {
    padding-left: 20px;
    border-left: 1px solid var(--lgw-line);
}

.lgw-stats--home strong {
    font-size: clamp(31px, 3.25vw, 50px);
}

.lgw-stats--home span {
    max-width: 15em;
    font-size: 8px;
}

.lgw-home .lgw-project-showcase {
    padding-bottom: clamp(86px, 9vw, 138px);
}

.lgw-home .lgw-project-grid {
    min-height: clamp(680px, 66vw, 880px);
}

.lgw-project-fit {
    overflow: hidden;
    background:
        radial-gradient(circle at 82% 12%, rgba(255, 212, 0, 0.13), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(145deg, #171a1b, #080a0a 72%);
    background-size: auto, 70px 70px, 70px 70px, auto;
    color: rgba(255, 255, 255, 0.66);
}

.lgw-project-fit .lgw-section-head {
    border-color: rgba(255, 255, 255, 0.14);
}

.lgw-project-fit .lgw-section-head h2,
.lgw-project-fit .lgw-kicker {
    color: var(--lgw-white);
}

.lgw-project-fit .lgw-section-head > p {
    color: rgba(255, 255, 255, 0.62);
}

.lgw-info-card--audience {
    min-height: 520px;
    padding: clamp(26px, 3vw, 42px);
    isolation: isolate;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 3px 3px 58px 3px;
    background: #111414;
    box-shadow: 0 30px 72px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.lgw-info-card--audience::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(7, 9, 9, 0.1) 5%, rgba(7, 9, 9, 0.76) 55%, #090b0b 88%),
        linear-gradient(90deg, rgba(7, 9, 9, 0.2), transparent);
    content: "";
}

.lgw-info-card--audience::after {
    right: -36px;
    bottom: -35px;
    z-index: 0;
    color: rgba(255, 212, 0, 0.09);
    font-size: 210px;
}

.lgw-info-card__image {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.7) contrast(1.04);
    transition: filter 620ms ease, transform 850ms var(--lgw-ease);
}

.lgw-info-card--audience:hover .lgw-info-card__image {
    filter: saturate(1) contrast(1.06);
    transform: scale(1.06);
}

.lgw-info-card--audience > span,
.lgw-info-card--audience h3,
.lgw-info-card--audience p,
.lgw-info-card--audience small,
.lgw-info-card--audience em {
    position: relative;
    z-index: 2;
}

.lgw-info-card--audience > span {
    display: inline-flex;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 100px;
    background: rgba(7, 9, 9, 0.4);
    color: var(--lgw-yellow);
    font-size: 7px;
    backdrop-filter: blur(10px);
}

.lgw-info-card--audience h3 {
    max-width: 8em;
    margin: 190px 0 18px;
    font-size: clamp(37px, 3.45vw, 55px);
    line-height: 0.93;
}

.lgw-info-card--audience p {
    max-width: 34em;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
}

.lgw-info-card--audience small {
    display: block;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.44);
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.lgw-info-card--audience em {
    left: clamp(26px, 3vw, 42px);
}

.lgw-panel--process,
.lgw-panel--coverage {
    overflow: hidden;
}

.lgw-panel--process::after,
.lgw-panel--coverage::after {
    position: absolute;
    right: -0.05em;
    bottom: -0.18em;
    font-family: var(--lgw-head);
    font-size: clamp(150px, 17vw, 260px);
    font-weight: 900;
    letter-spacing: -0.09em;
    line-height: 0.7;
    pointer-events: none;
}

.lgw-panel--process::after {
    color: rgba(255, 255, 255, 0.028);
    content: "01";
}

.lgw-panel--coverage::after {
    color: rgba(11, 13, 14, 0.035);
    content: "02";
}

.lgw-panel--process > *,
.lgw-panel--coverage > * {
    position: relative;
    z-index: 1;
}

.lgw-panel--coverage {
    background:
        radial-gradient(circle at 80% 15%, rgba(255, 212, 0, 0.28), transparent 27%),
        linear-gradient(rgba(11, 13, 14, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 13, 14, 0.035) 1px, transparent 1px),
        linear-gradient(145deg, var(--lgw-white), #ece7da);
    background-size: auto, 46px 46px, 46px 46px, auto;
}

.lgw-services .lgw-section-head > p:not(.lgw-kicker) {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.58);
}

.lgw-bento-card--five {
    grid-column: span 5;
}

.lgw-quote-ready {
    overflow: hidden;
    background:
        linear-gradient(90deg, transparent calc(50% - 0.5px), rgba(11, 13, 14, 0.035) 50%, transparent calc(50% + 0.5px)),
        var(--lgw-paper);
}

.lgw-quote-ready__shell {
    position: relative;
    display: grid;
    padding: clamp(38px, 6vw, 88px);
    overflow: hidden;
    grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
    gap: clamp(48px, 7vw, 110px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 3px 3px 92px 3px;
    background:
        radial-gradient(circle at 12% 15%, rgba(255, 212, 0, 0.12), transparent 22%),
        linear-gradient(rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px),
        linear-gradient(145deg, #171a1b, #080a0a 72%);
    background-size: auto, 58px 58px, 58px 58px, auto;
    box-shadow: 0 42px 100px rgba(11, 13, 14, 0.24), 12px 12px 0 var(--lgw-yellow);
    color: rgba(255, 255, 255, 0.65);
}

.lgw-quote-ready__shell::after {
    position: absolute;
    right: -0.05em;
    bottom: -0.28em;
    color: rgba(255, 255, 255, 0.025);
    content: "04";
    font-family: var(--lgw-head);
    font-size: clamp(220px, 30vw, 480px);
    font-weight: 900;
    letter-spacing: -0.12em;
    line-height: 0.7;
    pointer-events: none;
}

.lgw-quote-ready__intro,
.lgw-quote-ready__list {
    position: relative;
    z-index: 1;
}

.lgw-quote-ready .lgw-kicker {
    color: var(--lgw-yellow);
}

.lgw-quote-ready h2 {
    margin: 0 0 24px;
    color: var(--lgw-white);
    font-size: clamp(48px, 5.8vw, 82px);
    line-height: 0.92;
}

.lgw-quote-ready h2 span {
    color: var(--lgw-yellow);
    font-style: italic;
    font-weight: 580;
}

.lgw-quote-ready__intro > p:not(.lgw-kicker) {
    max-width: 37em;
}

.lgw-quote-ready__intro .lgw-btn--ghost {
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--lgw-white);
}

.lgw-quote-ready__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.lgw-quote-ready__list > div {
    display: grid;
    min-height: 190px;
    padding: 24px;
    align-content: start;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 18px 18px 42px 18px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(14px);
    transition: border-color 280ms ease, background 280ms ease, transform 340ms var(--lgw-ease);
}

.lgw-quote-ready__list > div:hover {
    border-color: rgba(255, 212, 0, 0.48);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.lgw-quote-ready__list small {
    color: var(--lgw-yellow);
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.15em;
}

.lgw-quote-ready__list strong {
    color: var(--lgw-white);
    font-family: var(--lgw-head);
    font-size: clamp(23px, 2.25vw, 32px);
    letter-spacing: -0.04em;
    line-height: 1;
}

.lgw-quote-ready__list span {
    font-size: 12px;
    line-height: 1.55;
}

.lgw-home-faq {
    background:
        radial-gradient(circle at 9% 18%, rgba(255, 255, 255, 0.72), transparent 20%),
        var(--lgw-paper-deep);
}

.lgw-home-faq__grid {
    display: grid;
    grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(60px, 9vw, 150px);
}

.lgw-home-faq__intro {
    position: sticky;
    top: 122px;
}

.lgw-home-faq__intro h2 {
    margin-bottom: 24px;
    font-size: clamp(48px, 5.6vw, 82px);
    line-height: 0.92;
}

.lgw-home-faq__intro h2 span {
    color: var(--lgw-moss);
    font-style: italic;
    font-weight: 560;
}

.lgw-home-faq__intro > p:not(.lgw-kicker) {
    max-width: 35em;
    margin-bottom: 28px;
    color: var(--lgw-muted);
}

.lgw-home-faq .lgw-faqs {
    max-width: none;
}

.lgw-home-faq .lgw-faq {
    background: rgba(255, 253, 247, 0.72);
}

@media (max-width: 1240px) {
    .lgw-bento-card--five {
        grid-column: span 6;
    }

    .lgw-quote-ready__shell {
        grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
        gap: 44px;
    }
}

@media (max-width: 1040px) {
    .lgw-stats--home {
        grid-template-columns: 1fr;
    }

    .lgw-stats--home div,
    .lgw-stats--home div + div {
        padding: 17px 0;
        border-top: 1px solid var(--lgw-line);
        border-left: 0;
    }

    .lgw-quote-ready__shell,
    .lgw-home-faq__grid {
        grid-template-columns: 1fr;
    }

    .lgw-home-faq__intro {
        position: static;
    }
}

@media (max-width: 800px) {
    .lgw-home .lgw-project-grid {
        min-height: 0;
    }

    .lgw-project-fit .lgw-swipe-cue {
        color: rgba(255, 255, 255, 0.5);
    }

    .lgw-project-fit .lgw-swipe-cue i {
        color: var(--lgw-yellow);
    }

    .lgw-project-fit .lgw-card-grid {
        display: flex;
        width: calc(100% + 12px);
        max-width: none;
        margin-right: -12px;
        padding: 0 12px 12px 0;
        gap: 11px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .lgw-project-fit .lgw-card-grid::-webkit-scrollbar {
        display: none;
    }

    .lgw-info-card--audience {
        min-height: 430px;
        flex: 0 0 min(86vw, 360px);
        scroll-snap-align: start;
        scroll-snap-stop: always;
        border-radius: 3px 3px 42px 3px;
    }

    .lgw-info-card--audience h3 {
        margin-top: 128px;
        font-size: clamp(36px, 11vw, 48px);
    }

    .lgw-info-card--audience p {
        font-size: 12px;
    }

    .lgw-bento-card--five {
        min-height: 440px;
        flex: 0 0 min(86vw, 380px);
        grid-column: auto;
    }

    .lgw-quote-ready__shell {
        padding: 28px 22px 34px;
        gap: 36px;
        border-radius: 3px 3px 54px 3px;
        box-shadow: 0 28px 64px rgba(11, 13, 14, 0.22), 7px 7px 0 var(--lgw-yellow);
    }

    .lgw-quote-ready h2,
    .lgw-home-faq__intro h2 {
        font-size: clamp(45px, 13vw, 60px);
    }

    .lgw-quote-ready__intro .lgw-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .lgw-quote-ready__list {
        grid-template-columns: 1fr;
    }

    .lgw-quote-ready__list > div {
        min-height: 0;
        padding: 20px;
    }

    .lgw-home-faq__grid {
        gap: 44px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .lgw-reveal {
        opacity: 1;
        transform: none;
    }

    .lgw-hero-cinema__video,
    .lgw-hero-cinema__grid,
    .lgw-hero-cinema__glow,
    .lgw-hero__motion {
        display: none !important;
    }

    .lgw-hero-cinema__poster,
    .lgw-hero--cinematic .lgw-hero__inner,
    .lgw-hero__film-card {
        opacity: 1;
        transform: none !important;
    }
}

@media print {
    .lgw-header,
    .lgw-marquee,
    .lgw-prefooter,
    .lgw-footer,
    .lgw-mobile-dock,
    .lgw-back-to-top,
    .lgw-play,
    .lgw-media-strip,
    .lgw-cta {
        display: none !important;
    }

    body,
    .lgw-section,
    .lgw-inner-hero {
        background: #fff !important;
        color: #000 !important;
    }

    .lgw-main {
        min-height: 0;
    }
}
