
    /* ============================================================
       TOKENS
    ============================================================ */
    :root {
      --lp-color-primary:        #c9a84c;
      --lp-color-primary-dark:   #a07c2e;
      --lp-color-secondary:      #02698f;
      --lp-color-secondary-dark: #014f6b;
      --lp-color-accent:         #7a00df;
      --lp-color-text:           #1a2e35;
      --lp-color-text-muted:     #5a7b88;
      --lp-color-bg:             #ffffff;
      --lp-color-bg-section:     #f4f7f9;
      --lp-color-white:          #ffffff;
      --lp-color-border:         #d8e4ea;

      --lp-font-display: 'Montserrat', 'Helvetica Neue', Helvetica, Arial, sans-serif;
      --lp-font-body:    'Open Sans', Arial, sans-serif;

      --lp-text-xs:   1.2rem;
      --lp-text-sm:   1.4rem;
      --lp-text-base: 1.6rem;
      --lp-text-lg:   1.8rem;
      --lp-text-xl:   2.0rem;
      --lp-text-2xl:  2.4rem;
      --lp-text-3xl:  3.0rem;
      --lp-text-4xl:  clamp(3.6rem, 5vw, 5.4rem);

      --lp-space-xs:  0.5rem;
      --lp-space-sm:  1rem;
      --lp-space-md:  1.5rem;
      --lp-space-lg:  2.4rem;
      --lp-space-xl:  4rem;
      --lp-space-2xl: 6.4rem;
      --lp-space-3xl: 9.6rem;

      --lp-radius-sm: 2px;
      --lp-radius-md: 4px;

      --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
      --lp-shadow-md: 0 6px 20px rgba(0,0,0,0.13);

      --lp-container: 1200px;
      --lp-container-padding: clamp(1.5rem, 5vw, 3rem);
      --lp-ease-out: cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* ============================================================
       RESET & BASE
    ============================================================ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { font-size: 62.5%; scroll-behavior: smooth; }
    body {
      font-family: var(--lp-font-body);
      font-size: var(--lp-text-base);
      color: var(--lp-color-text);
      background: var(--lp-color-bg);
      line-height: 1.75;
    }
    h1, h2, h3, h4 { font-family: var(--lp-font-display); line-height: 1.15; }
    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul { list-style: none; }

    /* ============================================================
       LAYOUT HELPERS
    ============================================================ */
    .lp-container {
      max-width: var(--lp-container);
      margin: 0 auto;
      padding: 0 var(--lp-container-padding);
    }
    .lp-section { padding: var(--lp-space-3xl) 0; }
    .lp-section--alt { background: var(--lp-color-bg-section); }

    /* ============================================================
       ACCESSIBILITY
    ============================================================ */
    .lp-skip-link {
      position: absolute; top: -100%; left: 1.6rem;
      background: var(--lp-color-secondary); color: var(--lp-color-white);
      padding: 0.8rem 1.6rem; font-size: var(--lp-text-sm); font-weight: 600;
      text-decoration: none; z-index: 9999;
      transition: top 150ms ease-out;
    }
    .lp-skip-link:focus { top: 0; }
    :focus-visible { outline: 3px solid var(--lp-color-primary); outline-offset: 3px; }
    :focus:not(:focus-visible) { outline: none; }

    /* ============================================================
       SECTION TAG
    ============================================================ */
    .lp-section-tag {
      display: inline-flex; align-items: center; gap: 0.75rem;
      font-size: var(--lp-text-sm); font-weight: 600; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--lp-color-primary); margin-bottom: var(--lp-space-sm);
    }
    .lp-section-tag::before {
      content: ''; display: block; width: 32px; height: 1px;
      background: var(--lp-color-primary);
    }

    /* ============================================================
       BUTTONS
    ============================================================ */
    .lp-btn {
      display: inline-block;
      padding: 0.875rem 2rem;
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-sm);
      font-weight: 600;
      border-radius: var(--lp-radius-sm);
      cursor: pointer;
      border: 2px solid transparent;
      transition: background-color 160ms var(--lp-ease-out),
                  color 160ms var(--lp-ease-out),
                  border-color 160ms var(--lp-ease-out);
    }
    .lp-btn:active { transform: scale(0.97); }

    /* Primary: amber bg + dark text (passes WCAG AA) */
    .lp-btn--primary {
      background: var(--lp-color-primary);
      color: var(--lp-color-text);
    }
    .lp-btn--outline-white {
      background: transparent;
      color: var(--lp-color-white);
      border-color: rgba(255,255,255,0.6);
    }
    .lp-btn--outline-dark {
      background: transparent;
      color: var(--lp-color-text);
      border: 2px solid var(--lp-color-border);
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-btn--primary:hover { background: var(--lp-color-primary-dark); }
      .lp-btn--outline-white:hover { background: rgba(255,255,255,0.12); border-color: var(--lp-color-white); }
      .lp-btn--outline-dark:hover { border-color: var(--lp-color-primary); color: var(--lp-color-primary); }
    }

    /* ============================================================
       NAV
    ============================================================ */
    .lp-nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 2rem 0;
      transition: background-color 250ms var(--lp-ease-out),
                  box-shadow 250ms var(--lp-ease-out),
                  padding 250ms var(--lp-ease-out);
    }
    .lp-nav__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: var(--lp-space-lg);
    }
    .lp-nav__logo img { height: 40px; width: auto; }
    .lp-nav__links {
      display: flex; align-items: center; gap: var(--lp-space-xl);
    }
    .lp-nav__links a {
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-sm);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.9);
      transition: color 160ms var(--lp-ease-out);
    }

    /* Scrolled state */
    .lp-nav--scrolled {
      background: var(--lp-color-white);
      box-shadow: 0 1px 8px rgba(0,0,0,0.1);
      padding: 1.2rem 0;
    }
    .lp-nav--scrolled .lp-nav__links a { color: var(--lp-color-text); }

    @media (hover: hover) and (pointer: fine) {
      .lp-nav__links a:hover { color: var(--lp-color-primary); }
    }

    @media (max-width: 768px) {
      .lp-nav__links { display: none; }
      .lp-nav { padding: 1.5rem 0; }
    }

    /* ============================================================
       HERO
    ============================================================ */
    .lp-hero {
      position: relative;
      min-height: 88vh;
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      display: flex;
      align-items: center;
      padding: 12rem 0 8rem;
    }
    .lp-hero__overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        105deg,
        color-mix(in srgb, var(--lp-color-secondary) 46%, transparent),
        color-mix(in srgb, var(--lp-color-secondary) 26%, transparent)
      );
    }
    .lp-hero .lp-container { position: relative; z-index: 1; }
    .lp-hero__content { max-width: 68rem; }
    .lp-hero__content .lp-section-tag {
      color: rgba(255,255,255,0.8);
    }
    .lp-hero__content .lp-section-tag::before {
      background: rgba(255,255,255,0.8);
    }
    .lp-hero h1 {
      font-size: var(--lp-text-4xl);
      font-weight: 700;
      color: var(--lp-color-white);
      margin-bottom: var(--lp-space-md);
    }
    .lp-hero__sub {
      font-size: var(--lp-text-lg);
      color: rgba(255,255,255,0.85);
      max-width: 54rem;
      margin-bottom: var(--lp-space-xl);
    }
    .lp-hero__ctas {
      display: flex; gap: var(--lp-space-md); flex-wrap: wrap;
      margin-bottom: var(--lp-space-xl);
    }
    .lp-hero__trust {
      display: flex; flex-wrap: wrap; gap: var(--lp-space-lg);
      padding-top: var(--lp-space-xl);
      border-top: 1px solid rgba(255,255,255,0.2);
    }
    .lp-hero__trust-item {
      display: flex; align-items: center; gap: 0.7rem;
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.85);
      font-weight: 600;
    }
    .lp-hero__trust-icon {
      width: 1.8rem; height: 1.8rem;
      background: var(--lp-color-primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      color: var(--lp-color-text);
      font-size: 1rem;
      font-weight: 700;
      line-height: 1;
    }

    /* ============================================================
       STATS
    ============================================================ */
    .lp-stats {
      background: var(--lp-color-primary);
      padding: var(--lp-space-xl) 0;
    }
    .lp-stats__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }
    .lp-stats__item {
      display: flex; flex-direction: column; align-items: center;
      padding: var(--lp-space-lg) var(--lp-space-md);
      border-left: 1px solid rgba(26,46,53,0.15);
    }
    .lp-stats__item:first-child { border-left: none; }
    .lp-stats__number {
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-4xl);
      font-weight: 700;
      color: var(--lp-color-text);
      line-height: 1;
    }
    .lp-stats__label {
      font-size: var(--lp-text-sm);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--lp-color-text);
      margin-top: 0.6rem;
      text-align: center;
    }

    @media (max-width: 768px) {
      .lp-stats__grid { grid-template-columns: repeat(2, 1fr); }
      .lp-stats__item:nth-child(3) { border-left: none; }
    }
    @media (max-width: 480px) {
      .lp-stats__grid { grid-template-columns: 1fr 1fr; }
    }

    /* ============================================================
       CLIENTS STRIP
    ============================================================ */
    .lp-clients {
      background: var(--lp-color-secondary);
      padding: var(--lp-space-lg) 0;
    }
    .lp-clients__inner {
      display: flex; align-items: center; gap: var(--lp-space-xl);
      flex-wrap: wrap; justify-content: center;
    }
    .lp-clients__label {
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-xs);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.55);
      white-space: nowrap;
    }
    .lp-clients__logos {
      display: flex; align-items: center;
      gap: var(--lp-space-2xl); flex-wrap: wrap;
    }
    .lp-clients__logos img {
      height: 26px; width: auto; opacity: 0.65;
      transition: opacity 160ms var(--lp-ease-out);
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-clients__logos img:hover { opacity: 1; }
    }

    /* ============================================================
       INTRO
    ============================================================ */
    .lp-intro__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--lp-space-2xl);
      align-items: start;
    }
    .lp-intro__body h2 {
      font-size: var(--lp-text-3xl);
      font-weight: 700;
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-lg);
    }
    .lp-intro__body p {
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-md);
    }
    .lp-intro__ctas {
      display: flex; gap: var(--lp-space-md); flex-wrap: wrap;
      margin-top: var(--lp-space-xl);
    }
    .lp-intro__quote {
      background: var(--lp-color-secondary);
      color: var(--lp-color-white);
      border-top: 3px solid var(--lp-color-primary);
      padding: var(--lp-space-xl);
    }
    .lp-intro__quote blockquote p {
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-xl);
      font-weight: 600;
      line-height: 1.5;
      color: var(--lp-color-white);
      margin-bottom: var(--lp-space-lg);
    }
    .lp-intro__quote cite {
      font-style: normal;
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.65);
      font-weight: 600;
    }
    .lp-intro__features {
      margin-top: var(--lp-space-xl);
      padding-top: var(--lp-space-lg);
      border-top: 1px solid rgba(255,255,255,0.15);
      display: flex; flex-direction: column; gap: var(--lp-space-sm);
    }
    .lp-intro__features li {
      display: flex; align-items: flex-start; gap: var(--lp-space-sm);
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.82);
    }
    .lp-intro__features li::before {
      content: '✓';
      color: var(--lp-color-primary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 0.1em;
    }

    @media (max-width: 900px) {
      .lp-intro__grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       SERVICES
    ============================================================ */
    .lp-services__header {
      max-width: 60rem;
      margin-bottom: var(--lp-space-2xl);
    }
    .lp-services__header h2 {
      font-size: var(--lp-text-3xl);
      font-weight: 700;
      color: var(--lp-color-text);
    }
    .lp-services__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: var(--lp-space-lg);
    }
    .lp-card {
      background: var(--lp-color-white);
      border-top: 3px solid var(--lp-color-primary);
      box-shadow: var(--lp-shadow-sm);
      padding: var(--lp-space-xl);
      transition: box-shadow 200ms var(--lp-ease-out),
                  transform 200ms var(--lp-ease-out);
    }
    .lp-card__icon {
      color: var(--lp-color-primary);
      margin-bottom: var(--lp-space-md);
    }
    .lp-card h3 {
      font-size: var(--lp-text-xl);
      font-weight: 700;
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-sm);
    }
    .lp-card p {
      font-size: var(--lp-text-base);
      color: var(--lp-color-text-muted);
      margin-bottom: var(--lp-space-md);
      line-height: 1.65;
    }
    .lp-card__list { padding-left: 0; }
    .lp-card__list li {
      font-size: var(--lp-text-sm);
      color: var(--lp-color-text-muted);
      padding: 0.5rem 0;
      border-bottom: 1px solid var(--lp-color-border);
      display: flex; align-items: center; gap: 0.7rem;
    }
    .lp-card__list li:last-child { border-bottom: none; }
    .lp-card__list li::before {
      content: '—';
      color: var(--lp-color-primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-card:hover { transform: translateY(-2px); box-shadow: var(--lp-shadow-md); }
    }

    @media (max-width: 600px) {
      .lp-services__grid { grid-template-columns: 1fr; }
    }

    /* ============================================================
       ABOUT / TEAM
    ============================================================ */
    .lp-about__grid {
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: var(--lp-space-2xl);
      align-items: start;
    }
    .lp-about__body h2 {
      font-size: var(--lp-text-3xl);
      font-weight: 700;
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-lg);
    }
    .lp-about__body p {
      color: var(--lp-color-text);
      margin-bottom: var(--lp-space-md);
    }
    .lp-about__cert {
      margin-top: var(--lp-space-xl);
      border-left: 3px solid var(--lp-color-primary);
      background: var(--lp-color-bg-section);
      padding: var(--lp-space-lg);
      display: flex; flex-direction: column; gap: 0.4rem;
    }
    .lp-about__cert strong {
      color: var(--lp-color-text);
      font-size: var(--lp-text-base);
      font-family: var(--lp-font-display);
    }
    .lp-about__cert span {
      color: var(--lp-color-text-muted);
      font-size: var(--lp-text-sm);
    }

    .lp-team {
      display: flex; flex-direction: column;
      gap: var(--lp-space-lg);
      position: sticky; top: 100px;
    }
    .lp-profile {
      background: var(--lp-color-secondary);
      color: var(--lp-color-white);
      border-top: 3px solid var(--lp-color-primary);
    }
    .lp-profile__photo {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      object-position: center top;
    }
    .lp-profile__info {
      padding: var(--lp-space-md) var(--lp-space-lg) var(--lp-space-sm);
    }
    .lp-profile__name {
      display: block;
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-lg);
      font-weight: 700;
      color: var(--lp-color-white);
    }
    .lp-profile__role {
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.65);
    }
    .lp-profile__facts {
      padding: var(--lp-space-sm) var(--lp-space-lg) var(--lp-space-md);
      border-top: 1px solid rgba(255,255,255,0.15);
      display: flex; flex-direction: column; gap: 0.4rem;
    }
    .lp-profile__facts li {
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.8);
      display: flex; align-items: center; gap: 0.6rem;
    }
    .lp-profile__facts li::before {
      content: '✓';
      color: var(--lp-color-primary);
      font-weight: 700;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .lp-about__grid { grid-template-columns: 1fr; }
      .lp-team { position: static; flex-direction: row; flex-wrap: wrap; }
      .lp-team .lp-profile { flex: 1; min-width: 240px; }
    }

    @media (max-width: 540px) {
      .lp-team { flex-direction: column; }
    }

    /* ============================================================
       CTA BANNER
    ============================================================ */
    .lp-cta-banner {
      background: var(--lp-color-secondary);
      background-image: repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.025) 0,
        rgba(255,255,255,0.025) 1px,
        transparent 0,
        transparent 50%
      );
      background-size: 10px 10px;
      padding: var(--lp-space-3xl) 0;
      text-align: center;
    }
    .lp-cta-banner__inner { max-width: 70rem; margin: 0 auto; }
    .lp-cta-banner h2 {
      font-size: var(--lp-text-3xl);
      font-weight: 700;
      color: var(--lp-color-white);
      margin-bottom: var(--lp-space-md);
    }
    .lp-cta-banner p {
      font-size: var(--lp-text-lg);
      color: rgba(255,255,255,0.8);
      margin-bottom: var(--lp-space-xl);
      max-width: 52rem;
      margin-left: auto;
      margin-right: auto;
    }
    .lp-cta-banner__buttons {
      display: flex; gap: var(--lp-space-md);
      justify-content: center; flex-wrap: wrap;
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-cta-banner .lp-btn--primary:hover { background: var(--lp-color-primary-dark); }
    }

    /* ============================================================
       CONTACT
    ============================================================ */
    .lp-contact h2 {
      font-size: var(--lp-text-3xl);
      font-weight: 700;
      color: var(--lp-color-text);
      margin-top: var(--lp-space-sm);
    }
    .lp-contact__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--lp-space-2xl);
      margin-top: var(--lp-space-2xl);
    }
    .lp-contact__details {
      display: flex; flex-direction: column; gap: var(--lp-space-lg);
    }
    .lp-contact__item {
      display: flex; align-items: flex-start; gap: var(--lp-space-md);
      padding-bottom: var(--lp-space-lg);
      border-bottom: 1px solid var(--lp-color-border);
    }
    .lp-contact__details .lp-contact__item:last-of-type { border-bottom: none; }
    .lp-contact__icon { color: var(--lp-color-primary); flex-shrink: 0; margin-top: 2px; }
    .lp-contact__item-body { display: flex; flex-direction: column; gap: 0.3rem; }
    .lp-contact__item-body strong {
      color: var(--lp-color-text);
      font-size: var(--lp-text-base);
      font-family: var(--lp-font-display);
    }
    .lp-contact__item-body span,
    .lp-contact__item-body a {
      color: var(--lp-color-text-muted);
      font-size: var(--lp-text-base);
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-contact__item-body a:hover { color: var(--lp-color-primary); }
    }

    .lp-contact__hours-block strong {
      display: block;
      color: var(--lp-color-text);
      font-family: var(--lp-font-display);
      font-size: var(--lp-text-base);
      margin-bottom: var(--lp-space-sm);
    }
    .lp-hours-grid {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.4rem var(--lp-space-lg);
    }
    .lp-hours-grid dt {
      color: var(--lp-color-text);
      font-size: var(--lp-text-sm);
      font-weight: 600;
    }
    .lp-hours-grid dd {
      color: var(--lp-color-text-muted);
      font-size: var(--lp-text-sm);
    }
    .lp-contact__map {
      height: 420px;
      border-radius: var(--lp-radius-md);
      overflow: hidden;
      box-shadow: var(--lp-shadow-sm);
    }
    .lp-contact__map iframe { width: 100%; height: 100%; }

    @media (max-width: 768px) {
      .lp-contact__grid { grid-template-columns: 1fr; }
      .lp-contact__map { height: 300px; }
    }

    /* ============================================================
       FOOTER
    ============================================================ */
    .lp-footer {
      background: var(--lp-color-secondary);
      border-top: 3px solid var(--lp-color-primary);
      padding: var(--lp-space-xl) 0 var(--lp-space-lg);
    }
    .lp-footer__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--lp-space-lg);
      flex-wrap: wrap;
    }
    .lp-footer__logo img { height: 36px; width: auto; }
    .lp-footer__links {
      display: flex; flex-wrap: wrap; gap: var(--lp-space-lg);
    }
    .lp-footer__links a {
      font-size: var(--lp-text-sm);
      color: rgba(255,255,255,0.7);
      font-weight: 600;
      transition: color 160ms var(--lp-ease-out);
    }

    @media (hover: hover) and (pointer: fine) {
      .lp-footer__links a:hover { color: var(--lp-color-primary); }
    }

    .lp-footer__legal {
      font-size: var(--lp-text-xs);
      color: rgba(255,255,255,0.45);
      width: 100%;
      text-align: center;
      padding-top: var(--lp-space-md);
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: var(--lp-space-sm);
    }

    /* ============================================================
       ANIMATIONS
    ============================================================ */
    .lp-animate-hero {
      opacity: 0;
      transform: translateY(12px);
    }
    .lp-animate-hero--visible {
      opacity: 1;
      transform: translateY(0);
      transition: opacity 500ms var(--lp-ease-out), transform 500ms var(--lp-ease-out);
    }

    .lp-animate-section {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity 400ms var(--lp-ease-out), transform 400ms var(--lp-ease-out);
    }
    .lp-animate-section--visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Stagger delays via CSS (no inline styles) */
    @media (prefers-reduced-motion: no-preference) {
      /* Stats items */
      .lp-stats__grid .lp-stats__item:nth-child(2) { transition-delay: 80ms; }
      .lp-stats__grid .lp-stats__item:nth-child(3) { transition-delay: 160ms; }
      .lp-stats__grid .lp-stats__item:nth-child(4) { transition-delay: 240ms; }

      /* Service cards */
      .lp-services__grid .lp-card:nth-child(2) { transition-delay: 80ms; }
      .lp-services__grid .lp-card:nth-child(3) { transition-delay: 80ms; }
      .lp-services__grid .lp-card:nth-child(4) { transition-delay: 160ms; }

      /* Intro / About / Contact second column */
      .lp-intro__grid > *:nth-child(2)   { transition-delay: 120ms; }
      .lp-about__grid > *:nth-child(2)   { transition-delay: 120ms; }
      .lp-contact__grid > *:nth-child(2) { transition-delay: 120ms; }
    }

    @media (prefers-reduced-motion: reduce) {
      .lp-animate-hero,
      .lp-animate-section { transform: none; transition: opacity 300ms ease; }
      .lp-animate-hero--visible,
      .lp-animate-section--visible { opacity: 1; }
    }
  