/* =========================================================
   LIVCENT SMART HOME
   GLOBAL STYLES
========================================================= */

:root {
  --black: #070808;
  --paper: #f2efe8;
  --white: #f6f2eb;
  --gold: #c8a55e;
  --gold2: #dfc88e;
  --muted: #b4afa7;
  --ink: #111;
  --line: rgba(255,255,255,.18);

  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --width: min(1240px, calc(100% - 100px));
}


/* =========================================================
   GLOBAL RESET
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 300;
}

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

button {
  font: inherit;
}

.page-width {
  width: min(1240px, calc(100% - 100px));
  margin-left: auto;
  margin-right: auto;
}



/* =========================================================
   HEADER
========================================================= */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;

  width: 100%;
  height: 78px;

  padding: 0 4.5vw;

  display: flex;
  align-items: center;
  gap: 40px;

  transition: .35s;
}

.site-header.scrolled {
  height: 65px;

  background: rgba(7,8,8,.78);

  backdrop-filter: blur(15px);

  border-bottom: 1px solid rgba(255,255,255,.08);
}

.brand {
  display: flex;
  flex-direction: column;

  line-height: 1;
}

.brand b {
  font-size: 14px;
  letter-spacing: .28em;
  font-weight: 500;
}

.brand small {
  font-size: 6px;
  letter-spacing: .2em;
  color: var(--gold2);

  margin-top: 5px;
}

.site-header nav {
  margin-left: auto;

  display: flex;
  gap: 30px;
}

.site-header nav a,
.mini-btn {
  font-size: 12px;

  text-transform: uppercase;

  letter-spacing: .13em;
}

.site-header nav a {
  opacity: .75;
}

.site-header nav a:hover {
  opacity: 1;
  color: var(--gold2);
}

.mini-btn {
  border: 1px solid rgba(200,165,94,.75);

  padding: 11px 17px;

  color: var(--gold2);
}

.menu-btn {
  display: none;

  background: none;
  border: 0;

  margin-left: auto;
}

.menu-btn span {
  display: block;

  width: 25px;
  height: 1px;

  background: #fff;

  margin: 6px;
}

.mobile-menu {
  display: none;
}


/* =========================================================
   COMMON MEDIA SECTIONS
========================================================= */

.media-section,
.hero,
.understands,
.cta {
  position: relative;
  overflow: hidden;
}

.hero {
  height: 100svh;
  min-height: 700px;

  display: flex;
  align-items: center;
}

.bg-video,
.media-fallback,
.image-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.media-fallback {
  background-size: cover;
  background-position: center;

  z-index: 0;
}

.bg-video {
  z-index: 1;
}

.media-fallback {
  z-index: 0;
}

.dark-overlay {
  position: absolute;

  z-index: 2;

  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.8),
      rgba(0,0,0,.38) 60%,
      rgba(0,0,0,.15)
    ),
    linear-gradient(
      0deg,
      rgba(0,0,0,.52),
      transparent 45%
    );
}


/* =========================================================
   COMMON CONTENT
========================================================= */

.hero-copy,
.responds-copy,
.connected-copy,
.understands-copy,
.cta-copy {
  position: relative;
  z-index: 3;
}

.hero-copy {
  padding-top: 30px;
}

.section-no {
  display: flex;
  align-items: center;
  gap: 11px;

  font-size: 10px;

  letter-spacing: .12em;

  color: #d2cdc4;
}

.section-no i {
  width: 42px;
  height: 1px;

  background: rgba(255,255,255,.5);
}


/* =========================================================
   HEADINGS
========================================================= */

h1,
h2 {
  font-family: var(--serif);

  font-weight: 400;

  letter-spacing: -.045em;

  line-height: .94;
}

.hero h1 {
  font-size: clamp(72px,7.5vw,116px);

  max-width: 820px;

  margin: 22px 0 24px;
}

.hero h1 em,
h2 em {
  font-style: normal;

  color: var(--gold2);
}

.hero-copy > p,
.cta-copy > p,
.understands-copy > p,
.connected-copy > p {
  font-size: 13px;

  line-height: 1.7;

  color: #d0cbc2;
}


/* =========================================================
   BUTTONS
========================================================= */

.buttons {
  display: flex;

  gap: 10px;

  margin-top: 27px;
}

.gold-btn,
.line-btn {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 45px;

  padding: 0 20px;

  border: 1px solid rgba(255,255,255,.45);

  font-size: 9px;

  letter-spacing: .13em;

  text-transform: uppercase;

  transition: .25s;
}

.gold-btn {
  background: var(--gold);

  border-color: var(--gold);

  color: #17130b;
}

.line-btn {
  background: rgba(0,0,0,.16);
}

.gold-btn:hover,
.line-btn:hover {
  transform: translateY(-2px);
}


/* =========================================================
   HERO SCROLL CUE
========================================================= */

.scroll-cue {
  position: absolute;

  z-index: 4;

  bottom: 25px;
  left: 50%;

  transform: translateX(-50%);

  font-size: 8px;

  letter-spacing: .14em;

  text-transform: uppercase;

  opacity: .75;
}


/* =========================================================
   SECTION 02
   THE HOME RESPONDS
========================================================= */

/* =========================================================
   SECTION 02 — THE HOME RESPONDS
   ========================================================= */
/* =========================================================
   SECTION 02 — THE HOME RESPONDS
   ========================================================= */

   .responds {
    position: relative;
    height: 180vh;
    background: #050606;
}


/* ---------------------------------------------------------
   Sticky cinematic area
   --------------------------------------------------------- */

.responds-pin {
    position: sticky;
    top: 0;

    height: 100svh;
    min-height: 700px;

    overflow: hidden;
}


/* ---------------------------------------------------------
   Background video
   --------------------------------------------------------- */

.responds-video {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    z-index: 1;

    filter: brightness(.72) saturate(.9);
}


/* ---------------------------------------------------------
   Fallback image
   --------------------------------------------------------- */

.responds-fallback {
    position: absolute;
    inset: 0;

    background-size: cover;
    background-position: center;

    z-index: 0;
}


/* ---------------------------------------------------------
   Cinematic dark overlay
   --------------------------------------------------------- */

.responds-overlay {
    position: absolute;
    inset: 0;

    z-index: 2;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.50) 42%,
            rgba(0,0,0,.18) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.65),
            transparent 55%
        );
}


/* ---------------------------------------------------------
   Main content
   --------------------------------------------------------- */

.responds-content {
    position: relative;

    z-index: 5;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding-top: 20px;
}


/* ---------------------------------------------------------
   Heading
   --------------------------------------------------------- */

.responds h2 {
    font-family: var(--serif);

    font-weight: 400;

    font-size: clamp(64px, 7vw, 104px);

    line-height: .94;

    letter-spacing: -.045em;

    margin: 22px 0 22px;

    max-width: 700px;
}


.responds h2 em {
    font-style: normal;

    color: var(--gold2);
}


/* ---------------------------------------------------------
   Description
   --------------------------------------------------------- */

.responds-intro {
    max-width: 430px;

    margin: 0;

    font-size: 14px;

    line-height: 1.75;

    color: #d0cbc2;
}


/* =========================================================
   Story list
   ========================================================= */

.responds-story {
    width: 420px;

    margin-top: 38px;

    display: grid;

    gap: 18px;
}


/* ---------------------------------------------------------
   Individual story
   --------------------------------------------------------- */

   .responds-story-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;

    padding: 0;
    border: 0;

    opacity: .28;

    transform: translateX(0);

    transition:
        opacity .7s cubic-bezier(.22, 1, .36, 1),
        transform .7s cubic-bezier(.22, 1, .36, 1);
}

/* ---------------------------------------------------------
   Active story
   --------------------------------------------------------- */

   .responds-story-item.active {
    opacity: 1;
    transform: translateX(8px);
}


/* ---------------------------------------------------------
   Story number
   --------------------------------------------------------- */

.story-number {
    font-size: 10px;

    letter-spacing: .12em;

    color: var(--gold2);

    padding-top: 2px;
}


/* ---------------------------------------------------------
   Story text
   --------------------------------------------------------- */

.story-content {
    display: flex;

    flex-direction: column;

    gap: 5px;
}


.story-content strong {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: .16em;

    font-weight: 500;

    color: #f4f0e9;
}


.story-content span {
    font-size: 11px;

    line-height: 1.5;

    color: #aaa59d;
}


/* =========================================================
   Single bottom progress bar
   ========================================================= */

.responds-progress {
    position: absolute;

    z-index: 6;

    left: 50%;

    bottom: 6%;

    transform: translateX(-50%);

    width: min(480px, 55vw);

    height: 1px;

    background: rgba(255,255,255,.20);

    overflow: hidden;
}


.responds-progress-fill {
    display: block;

    width: 25%;

    height: 2px;

    background: var(--gold);

    transition: width .45s ease;
}


/* =========================================================
   SECTION 03 STARTS HERE
   EVERYTHING CONNECTED
========================================================= */

/* =========================================================
   SECTION 03
   EVERYTHING CONNECTED

   This section explains that Lighting, Climate,
   Curtains, Security, Media and Scenes are all
   connected through one Livcent system.
========================================================= */

.connected {
  position: relative;

  /* Give the map enough vertical space.
     This prevents Media / Scenes from being hidden
     behind Section 04. */
  height: auto;
  min-height: 1050px;

  overflow: hidden;

  color: #fff;

  background: #080909;
}


/* =========================================================
 SECTION 03 BACKGROUND IMAGE
========================================================= */

.connected > .image-bg {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  background-size: cover;
  background-repeat: no-repeat;

  /*
     Change this if the important part of your
     connected.jpg is more toward left or right.
  */
  background-position: center center;

  z-index: 1;

  transform: scale(1.02);
}


/* =========================================================
 SECTION 03 DARK OVERLAY
========================================================= */

.connected > .dark-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  /*
     Keep the left side dark enough for the heading,
     but allow some of the image to remain visible.
  */
  background:
      linear-gradient(
          90deg,
          rgba(0,0,0,.84) 0%,
          rgba(0,0,0,.68) 32%,
          rgba(0,0,0,.45) 58%,
          rgba(0,0,0,.52) 100%
      );
}


/* =========================================================
 SECTION 03 CONTENT WRAPPER
========================================================= */

.connected-copy {
  position: relative;

  z-index: 5;

  /*
     IMPORTANT:
     This reserves the real section height.
     The connection map is positioned inside this area.
  */
  min-height: 1050px;

  padding-top: 115px;
  padding-bottom: 100px;
}


/* =========================================================
 SECTION NUMBER
========================================================= */

.connected .section-no {
  font-size: 13px;

  letter-spacing: .18em;

  color: rgba(255,255,255,.68);

  margin-bottom: 24px;
}


/* =========================================================
 HEADING
========================================================= */

.connected h2 {
  max-width: 620px;

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(68px, 6.5vw, 104px);

  line-height: .91;

  font-weight: 400;

  letter-spacing: -.055em;
}


.connected h2 em {
  color: var(--gold2);

  /*
     Matches the premium editorial style
     used across Livcent.
  */
  font-style: italic;

  font-weight: 300;
}


/* =========================================================
 INTRO DESCRIPTION
========================================================= */

.connected-copy > p {
  max-width: 430px;

  margin-top: 26px;

  font-size: 16px;

  line-height: 1.65;

  color: rgba(255,255,255,.70);
}


/* =========================================================
 CONNECTION MAP
========================================================= */

.connection-map {
  position: absolute;

  /*
     Keep it on the right half of the section.
  */
  right: 2%;
  top: 150px;

  width: min(650px, 52vw);
  height: 620px;

  /*
     IMPORTANT:
     Do NOT use translateY(-38%) here anymore.
     That was making the map positioning harder
     to control and contributing to clipping.
  */
  transform: none;

  z-index: 6;
}


/* =========================================================
 LIVCENT CENTRAL CORE
========================================================= */

.connection-map .core {
  position: absolute;

  left: 50%;
  top: 50%;

  transform: translate(-50%, -50%);

  width: 135px;
  height: 135px;

  border: 1px solid rgba(223,200,142,.60);

  border-radius: 50%;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  background:
      radial-gradient(
          circle,
          rgba(255,255,255,.12),
          rgba(255,255,255,.035) 60%,
          rgba(0,0,0,.12)
      );

  box-shadow:
      0 0 0 1px rgba(255,255,255,.035),
      0 0 55px rgba(223,200,142,.08),
      inset 0 0 35px rgba(255,255,255,.04);

  backdrop-filter: blur(10px);

  z-index: 10;

  animation: livcentPulse 4s ease-in-out infinite;
}


/* Central L */

.connection-map .core span {
  font-family: var(--serif);

  font-size: 48px;

  line-height: 1;

  font-weight: 300;

  color: #fff;
}


/* LIVCENT underneath L */

.connection-map .core small {
  margin-top: 8px;

  font-size: 7px;

  letter-spacing: .28em;

  color: rgba(255,255,255,.55);
}


/* =========================================================
 CORE PULSE
========================================================= */

@keyframes livcentPulse {

  0%,
  100% {

      box-shadow:
          0 0 0 1px rgba(255,255,255,.04),
          0 0 40px rgba(223,200,142,.05),
          inset 0 0 30px rgba(255,255,255,.03);
  }


  50% {

      box-shadow:
          0 0 0 1px rgba(223,200,142,.18),
          0 0 70px rgba(223,200,142,.14),
          inset 0 0 40px rgba(255,255,255,.07);
  }
}


/* =========================================================
 CONNECTION LINES
========================================================= */

.connection-map .connector {
  position: absolute;

  left: 50%;
  top: 50%;

  height: 1px;

  background:
      linear-gradient(
          90deg,
          rgba(223,200,142,.45),
          rgba(255,255,255,.20),
          transparent
      );

  transform-origin: left center;

  z-index: 3;

  opacity: .70;
}


/* Small light travelling along each connection */

.connection-map .connector::after {
  content: "";

  position: absolute;

  left: 0;
  top: -2px;

  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: var(--gold2);

  box-shadow:
      0 0 10px rgba(223,200,142,.8);

  animation:
      connectionTravel 4s linear infinite;
}


@keyframes connectionTravel {

  0% {
      left: 0;
      opacity: 0;
  }

  15% {
      opacity: 1;
  }

  85% {
      opacity: 1;
  }

  100% {
      left: 100%;
      opacity: 0;
  }
}


/* =========================================================
 CONNECTION LINE POSITIONS
========================================================= */

/* Lighting - upper left */

.connection-map .c1 {
  width: 225px;

  transform: rotate(-145deg);
}


/* Climate - upper right */

.connection-map .c2 {
  width: 225px;

  transform: rotate(-35deg);
}


/* Curtains - middle left */

.connection-map .c3 {
  width: 235px;

  transform: rotate(180deg);
}


/* Security - middle right */

.connection-map .c4 {
  width: 235px;

  transform: rotate(0deg);
}


/* Media - lower left */

.connection-map .c5 {
  width: 225px;

  transform: rotate(145deg);
}


/* Scenes - lower right */

.connection-map .c6 {
  width: 225px;

  transform: rotate(35deg);
}


/* =========================================================
 HOTSPOTS
========================================================= */

.connection-map .hotspot {
  position: absolute;

  z-index: 12;

  width: 190px;

  padding: 16px 17px;

  border: 1px solid rgba(255,255,255,.18);

  border-radius: 2px;

  background: rgba(7,8,8,.52);

  color: #fff;

  text-align: left;

  cursor: pointer;

  backdrop-filter: blur(12px);

  transition:
      transform .3s ease,
      background .3s ease,
      border-color .3s ease,
      box-shadow .3s ease;
}


/* Hotspot title */

.connection-map .hotspot b {
  display: block;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: .15em;

  color: #f5f1e9;
}


/* Description */

.connection-map .hotspot small {
  display: block;

  margin-top: 7px;

  font-size: 11px;

  line-height: 1.45;

  color: rgba(255,255,255,.62);
}


/* Hover interaction */

.connection-map .hotspot:hover {
  transform: translateY(-4px);

  background: rgba(255,255,255,.10);

  border-color: rgba(223,200,142,.55);

  box-shadow:
      0 15px 35px rgba(0,0,0,.22);
}


.connection-map .hotspot:hover b {
  color: var(--gold2);
}


/* =========================================================
 HOTSPOT POSITIONS
========================================================= */

/* LIGHTING */

.connection-map .h1 {
  left: 5px;
  top: 4%;
}


/* CLIMATE */

.connection-map .h2 {
  right: 5px;
  top: 4%;
}


/* CURTAINS */

.connection-map .h3 {
  left: -20px;
  top: 39%;
}


/* SECURITY */

.connection-map .h4 {
  right: -20px;
  top: 39%;
}


/* MEDIA */

.connection-map .h5 {
  left: 30px;
  bottom: 4%;
}


/* SCENES */

.connection-map .h6 {
  right: 30px;
  bottom: 4%;
}


/* =========================================================
 SECTION 03 TABLET
========================================================= */

@media (max-width: 900px) {

  .connected {
      min-height: 1050px;
  }


  .connected-copy {
      min-height: 1050px;

      padding-top: 95px;
      padding-bottom: 80px;
  }


  .connected h2 {
      font-size: 68px;
  }


  .connected-copy > p {
      font-size: 15px;

      max-width: 400px;
  }


  .connection-map {
      right: 50%;

      top: 430px;

      transform: translateX(50%);

      width: min(620px, 92vw);

      height: 570px;
  }


  .connection-map .core {
      width: 115px;
      height: 115px;
  }


  .connection-map .core span {
      font-size: 42px;
  }


  .connection-map .hotspot {
      width: 160px;

      padding: 13px 14px;
  }


  .connection-map .hotspot small {
      font-size: 10px;
  }
}


/* =========================================================
 SECTION 03 MOBILE
========================================================= */

@media (max-width: 560px) {

  .connected {
      min-height: auto;
  }


  .connected > .image-bg {
      background-position: 62% center;
  }


  .connected > .dark-overlay {
      background:
          linear-gradient(
              180deg,
              rgba(0,0,0,.45) 0%,
              rgba(0,0,0,.65) 45%,
              rgba(0,0,0,.93) 100%
          );
  }


  .connected-copy {
      min-height: auto;

      padding-top: 85px;

      padding-bottom: 75px;
  }


  .connected .section-no {
      font-size: 11px;
  }


  .connected h2 {
      font-size: 54px;

      line-height: .92;
  }


  .connected-copy > p {
      max-width: 330px;

      font-size: 15px;

      line-height: 1.55;
  }


  /*
     On mobile the map becomes part of normal
     document flow rather than absolute positioning.
     This prevents any overlap with Section 04.
  */

  .connection-map {
      position: relative;

      right: auto;
      top: auto;

      transform: none;

      width: 100%;
      height: auto;

      margin-top: 50px;

      display: grid;

      grid-template-columns: 1fr 1fr;

      gap: 12px;
  }


  /*
     Hide desktop connection diagram on mobile.
     The six cards themselves explain the system
     more clearly on a small screen.
  */

  .connection-map .core,
  .connection-map .connector {
      display: none;
  }


  .connection-map .hotspot {
      position: relative;

      left: auto !important;
      right: auto !important;

      top: auto !important;
      bottom: auto !important;

      width: 100%;

      min-height: 96px;

      padding: 14px;
  }


  .connection-map .hotspot b {
      font-size: 10px;
  }


  .connection-map .hotspot small {
      font-size: 9px;
  }
}


/* =========================================================
 VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

  .connection-map {
      grid-template-columns: 1fr;
  }


  .connection-map .hotspot {
      min-height: 80px;
  }
}

/* =========================================================
   SECTION 04
   INTERFACES
========================================================= */
/* =========================================================
   SECTION 04 — THE LIVCENT INTERFACE
========================================================= */

.interfaces {
  position: relative;

  min-height: 100vh;

  background: #f2efe8;

  color: #111;

  overflow: hidden;

  display: flex;

  align-items: center;
}


/* =========================================================
 MAIN GRID
========================================================= */

.interface-grid {
  display: grid;

  grid-template-columns: 32% 68%;

  gap: 4vw;

  align-items: center;

  min-height: 100vh;

  padding: 90px 0 70px;
}


/* =========================================================
 LEFT SIDE
========================================================= */

.interface-copy {
  position: relative;

  z-index: 5;
}


.section-no.dark {
  color: #716c64;
}


.section-no.dark i {
  background: #aaa49c;
}


/* Large heading */

.interface-copy h2 {
  margin: 22px 0 25px;

  font-family: var(--serif);

  font-size: clamp(68px, 6.4vw, 104px);

  font-weight: 400;

  line-height: .88;

  letter-spacing: -.055em;

  color: #111;
}


.interface-copy h2 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 300;
}


/* Intro */

.interface-copy > p {
  max-width: 390px;

  margin: 0;

  font-size: 15px;

  line-height: 1.7;

  color: #6e6961;
}


/* =========================================================
 LEFT NAVIGATION
========================================================= */

.interface-tabs {
  width: 100%;

  max-width: 430px;

  margin-top: 42px;

  display: grid;
}


.interface-tabs button {
  position: relative;

  width: 100%;

  display: grid;

  grid-template-columns: 45px 1fr;

  align-items: center;

  gap: 8px;

  padding: 16px 0;

  border: 0;

  border-bottom: 1px solid #d6d0c6;

  background: transparent;

  text-align: left;

  cursor: pointer;

  color: #8c867d;

  transition:
      color .35s ease,
      padding-left .35s ease;
}


.interface-tabs button b {
  font-size: 10px;

  font-weight: 400;

  letter-spacing: .12em;

  color: #aaa39a;

  transition: color .35s ease;
}


.interface-tabs button span {
  font-size: 11px;

  font-weight: 500;

  letter-spacing: .12em;

  text-transform: uppercase;
}


.interface-tabs button::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: -1px;

  width: 0;
  height: 1px;

  background: var(--gold);

  transition: width .45s ease;
}


.interface-tabs button.active {
  color: #161616;

  padding-left: 8px;
}


.interface-tabs button.active b {
  color: var(--gold);
}


.interface-tabs button.active::after {
  width: 100%;
}


/* =========================================================
 RIGHT PRODUCT STAGE
========================================================= */

.interface-stage {
  position: relative;

  min-width: 0;

  height: 680px;
}


.interface-slides {
  position: relative;

  width: 100%;
  height: 100%;
}


/* =========================================================
 INDIVIDUAL SLIDE
========================================================= */

.interface-slide {
  position: absolute;

  inset: 0;

  display: grid;

  grid-template-columns: 55% 45%;

  align-items: center;

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transform: translateY(25px);

  transition:
      opacity .7s ease,
      transform .7s ease,
      visibility .7s ease;
}


.interface-slide.active {
  opacity: 1;

  visibility: visible;

  pointer-events: auto;

  transform: translateY(0);
}


/* =========================================================
 PRODUCT IMAGE AREA
========================================================= */

.interface-product {
  position: relative;

  height: 610px;

  display: flex;

  align-items: center;
  justify-content: center;
}


/* Soft product shadow */

.interface-product::after {
  content: "";

  position: absolute;

  left: 50%;
  bottom: 60px;

  transform: translateX(-50%);

  width: 55%;
  height: 45px;

  background: rgba(0,0,0,.15);

  border-radius: 50%;

  filter: blur(28px);
}


/* Product image */

.interface-product img {
  position: relative;

  z-index: 2;

  display: block;

  max-width: 92%;
  max-height: 585px;

  width: auto;
  height: auto;

  object-fit: contain;

  filter:
      drop-shadow(
          0 30px 35px rgba(0,0,0,.18)
      );

  animation:
      interfaceFloat
      5s
      ease-in-out
      infinite;
}


/* Subtle premium floating animation */

@keyframes interfaceFloat {

  0%,
  100% {
      transform: translateY(0);
  }

  50% {
      transform: translateY(-10px);
  }
}


/* =========================================================
 PRODUCT INFORMATION
========================================================= */

.interface-details {
  max-width: 360px;

  padding-left: 15px;
}


.interface-label {
  display: block;

  margin-bottom: 22px;

  font-size: 12px;

  font-weight: 500;

  letter-spacing: .22em;

  color: #171717;
}


/* Product heading */

.interface-details h3 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(38px, 3.2vw, 55px);

  line-height: .98;

  letter-spacing: -.04em;

  font-weight: 400;

  color: #171717;
}


.interface-details h3 em {
  color: var(--gold);

  font-style: italic;

  font-weight: 300;
}


/* Product description */

.interface-details > p {
  max-width: 330px;

  margin: 22px 0 0;

  font-size: 14px;

  line-height: 1.7;

  color: #777168;
}


/* =========================================================
 PRODUCT FEATURES
========================================================= */

.interface-features {
  display: grid;

  gap: 19px;

  margin-top: 38px;
}


.interface-features > div {
  display: grid;

  grid-template-columns: 54px 1fr;

  align-items: center;

  gap: 15px;
}


.feature-icon {
  width: 50px;
  height: 50px;

  border: 1px solid rgba(161,124,61,.65);

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 20px;

  color: #8f6d34;
}


.interface-features p {
  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 4px;
}


.interface-features strong {
  font-size: 13px;

  font-weight: 500;

  letter-spacing: .05em;

  color: #25221e;
}


.interface-features small {
  font-size: 12px;

  color: #918b82;
}




/* =========================================================
 GOLD AUTO PROGRESS LINE
========================================================= */

.auto-progress {
  position: absolute;

  left: 4%;
  right: 2%;

  bottom: 8px;

  height: 1px;

  background: #d2cbc0;

  overflow: hidden;
}


.auto-progress span {
  display: block;

  width: 0;
  height: 2px;

  background: var(--gold);
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 767px) {

  .interface-grid {
      grid-template-columns: 1fr;

      gap: 30px;

      padding: 90px 0;
  }


  .interface-copy h2 {
      font-size: 75px;
  }


  .interface-tabs {
      max-width: 520px;
  }


  .interface-stage {
      height: 650px;
  }


  .interface-slide {
      grid-template-columns: 52% 48%;
  }


  .interface-product {
      height: 560px;
  }


  .interface-product img {
      max-height: 480px;
  }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 560px) {

  .interfaces {
      min-height: auto;
  }


  .interface-grid {
      min-height: auto;

      padding: 80px 0;

      gap: 35px;
  }


  .interface-copy h2 {
      font-size: 58px;

      margin-top: 18px;
  }


  .interface-copy > p {
      font-size: 14px;
  }


  .interface-tabs {
      margin-top: 28px;
  }


  .interface-tabs button {
      padding: 13px 0;
  }


  .interface-stage {
      height: 790px;
  }


  .interface-slide {
      display: flex;

      flex-direction: column;

      justify-content: flex-start;
  }


  .interface-product {
      width: 100%;

      height: 430px;
  }


  .interface-product img {
      max-width: 78%;

      max-height: 390px;
  }


  .interface-details {
      width: 100%;

      max-width: none;

      padding-left: 0;
  }


  .interface-details h3 {
      font-size: 40px;
  }


  .interface-details > p {
      max-width: 330px;

      font-size: 13px;
  }


  .interface-features {
      grid-template-columns: 1fr;

      gap: 13px;

      margin-top: 25px;
  }


  .interface-features > div {
      grid-template-columns: 44px 1fr;
  }


  .feature-icon {
      width: 40px;
      height: 40px;

      font-size: 16px;
  }


  .interface-dots {
      left: 0;

      bottom: 20px;
  }


  .auto-progress {
      left: 0;
      right: 0;

      bottom: 0;
  }

}


/* =========================================================
   UNDERSTANDS / EXPERIENCE / SECTION 05
========================================================= */
/* =========================================================
   SECTION 05 — A HOME THAT UNDERSTANDS
========================================================= */
/* =========================================================
   SECTION 05 — A HOME THAT UNDERSTANDS
   Sticky automation story
========================================================= */
/* =========================================================
   SECTION 05 — NORMAL CINEMATIC SECTION
========================================================= */
/* =========================================================
   SECTION 05 — A HOME THAT UNDERSTANDS
   Video-based lifestyle scene section
========================================================= */
/* =========================================================
   SECTION 05 — A HOME THAT UNDERSTANDS
========================================================= */

.understands {
    position: relative;

    height: 100svh;
    min-height: 720px;

    background: #060707;

    overflow: hidden;
}


/* =========================================================
   SECTION WRAPPER
========================================================= */

.understands-pin {
    position: relative;

    width: 100%;
    height: 100%;

    min-height: 720px;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND VIDEO
========================================================= */

.understands-video {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;

    z-index: 1;

    display: block;
}


/* =========================================================
   FALLBACK IMAGE
========================================================= */

.understands-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-size: cover;

    background-position: center center;

    background-repeat: no-repeat;

    z-index: 0;
}


/* =========================================================
   CINEMATIC OVERLAY
========================================================= */

.understands-overlay {
    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.78) 0%,
            rgba(0,0,0,.56) 35%,
            rgba(0,0,0,.22) 68%,
            rgba(0,0,0,.12) 100%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,.38),
            transparent 55%
        );
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.understands-content {
    position: relative;

    z-index: 5;

    height: 100%;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        390px;

    gap: 70px;

    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.understands-left {
    max-width: 720px;
}


.understands .section-no {
    margin-bottom: 24px;

    font-size: 12px;

    letter-spacing: .18em;

    color: rgba(255,255,255,.68);
}


/* =========================================================
   HEADING
========================================================= */

.understands h2 {
    max-width: 720px;

    margin: 0 0 24px;

    font-family: var(--serif);

    font-size:
        clamp(
            68px,
            6.5vw,
            104px
        );

    font-weight: 400;

    line-height: .92;

    letter-spacing: -.055em;
}


.understands h2 em {
    color: var(--gold2);

    font-style: italic;

    font-weight: 300;
}


/* =========================================================
   INTRO
========================================================= */

.understands-intro {
    margin: 0;

    font-size: 17px;

    line-height: 1.6;

    color: rgba(255,255,255,.88);
}


/* =========================================================
   DESCRIPTION
========================================================= */

.understands-description {
    max-width: 430px;

    margin: 12px 0 0;

    font-size: 13px;

    line-height: 1.75;

    color: rgba(255,255,255,.60);
}


/* =========================================================
   BUTTON
========================================================= */

.understands .line-btn {
    width: fit-content;

    margin-top: 28px;

    min-height: 44px;

    padding: 0 20px;
}


/* =========================================================
   RIGHT SIDE — SCENES
========================================================= */

.experience-list {
    position: relative;

    width: 100%;

    display: grid;

    gap: 10px;
}


/* =========================================================
   EACH SCENE
========================================================= */

.experience {
    position: relative;

    display: grid;

    grid-template-columns:
        44px
        1fr;

    gap: 14px;

    align-items: center;

    min-height: 72px;

    padding: 11px 12px;

    opacity: .28;

    transform: translateX(0);

    transition:
        opacity .4s ease,
        transform .4s ease,
        background .4s ease;
}


/* =========================================================
   ACTIVE SCENE
========================================================= */

.experience.active {
    opacity: 1;

    transform: translateX(8px);

    background:
        linear-gradient(
            90deg,
            rgba(200,165,94,.08),
            transparent 72%
        );
}


/* Small gold underline */

.experience::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--gold);

    transition: width .4s ease;
}


.experience.active::after {
    width: 58%;
}


/* =========================================================
   NUMBER
========================================================= */

.experience > b {
    width: 34px;
    height: 34px;

    border:
        1px solid
        rgba(200,165,94,.38);

    border-radius: 50%;

    display: grid;

    place-items: center;

    font-size: 9px;

    font-weight: 400;

    color:
        rgba(255,255,255,.45);

    transition:
        color .4s ease,
        border-color .4s ease,
        background .4s ease;
}


.experience.active > b {
    color: #15110a;

    border-color: var(--gold);

    background: var(--gold);
}


/* =========================================================
   TEXT
========================================================= */

.experience span {
    display: grid;

    gap: 5px;
}


.experience strong {
    font-size: 12px;

    font-weight: 500;

    text-transform: uppercase;

    letter-spacing: .15em;

    color: #f4f0e9;
}


.experience small {
    max-width: 280px;

    font-size: 11px;

    line-height: 1.5;

    color:
        rgba(255,255,255,.56);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .understands {
        height: auto;

        min-height: 900px;
    }


    .understands-pin {
        min-height: 900px;
    }


    .understands-content {
        min-height: 900px;

        grid-template-columns: 1fr;

        align-content: center;

        gap: 45px;

        padding-top: 80px;
        padding-bottom: 80px;
    }


    .understands-left {
        max-width: 600px;
    }


    .understands h2 {
        font-size: 68px;
    }


    .experience-list {
        max-width: 520px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 560px) {

    .understands {
        height: auto;

        min-height: 900px;
    }


    .understands-pin {
        min-height: 900px;
    }


    .understands-video {
        object-position: 65% center;
    }


    .understands-bg {
        background-position: 65% center;
    }


    .understands-overlay {

        background:
            linear-gradient(
                180deg,
                rgba(0,0,0,.30) 0%,
                rgba(0,0,0,.58) 45%,
                rgba(0,0,0,.92) 100%
            );
    }


    .understands-content {
        min-height: 900px;

        display: flex;

        flex-direction: column;

        justify-content: flex-end;

        align-items: flex-start;

        gap: 30px;

        padding-top: 80px;

        padding-bottom: 65px;
    }


    .understands h2 {
        font-size: 52px;
    }


    .understands-intro {
        font-size: 15px;
    }


    .understands-description {
        max-width: 320px;

        font-size: 11px;
    }


    .experience-list {
        width: 100%;

        gap: 4px;
    }


    .experience {
        min-height: 58px;

        grid-template-columns:
            36px
            1fr;

        gap: 10px;

        padding: 6px 7px;
    }


    .experience > b {
        width: 28px;

        height: 28px;

        font-size: 8px;
    }


    .experience strong {
        font-size: 10px;
    }


    .experience small {
        font-size: 9px;
    }


    .experience.active::after {
        width: 70%;
    }

}
/* =========================================================
   CTA
========================================================= */
/* =========================================================
   SECTION 06 — FINAL CTA
========================================================= */
/* =========================================================
   SECTION 06 — FINAL CTA
========================================================= */

.cta {
  position: relative;

  width: 100%;
  height: 78svh;
  min-height: 620px;

  display: flex;
  align-items: center;

  background: #050606;
  overflow: hidden;
}


/* =========================================================
 BACKGROUND
========================================================= */

.cta .bg-video,
.cta .media-fallback {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.cta .bg-video {
  z-index: 1;
}

.cta .media-fallback {
  z-index: 0;

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


/* =========================================================
 OVERLAY
========================================================= */

.cta-overlay {
  position: absolute;

  inset: 0;

  z-index: 2;

  background:
      linear-gradient(
          90deg,
          rgba(0,0,0,.78) 0%,
          rgba(0,0,0,.55) 38%,
          rgba(0,0,0,.20) 70%,
          rgba(0,0,0,.08) 100%
      ),
      linear-gradient(
          0deg,
          rgba(0,0,0,.35),
          transparent 60%
      );
}


/* =========================================================
 CONTENT
========================================================= */

.cta-copy {
  position: relative;

  z-index: 5;

  /*
     IMPORTANT:
     page-width already controls left/right browser spacing.
     Do not use width:100% here.
  */
  margin-left: auto;
  margin-right: auto;
}


/* Section number */

.cta .section-no {
  margin-bottom: 25px;

  font-size: 11px;

  letter-spacing: .18em;

  color: rgba(255,255,255,.68);
}


/* =========================================================
 HEADING
========================================================= */

.cta h2 {
  max-width: 900px;

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(68px, 6.5vw, 106px);

  line-height: .92;

  letter-spacing: -.055em;

  font-weight: 400;
}

.cta h2 em {
  color: var(--gold2);

  font-style: italic;

  font-weight: 300;
}


/* =========================================================
 DESCRIPTION
========================================================= */

.cta-copy > p {
  max-width: 520px;

  margin: 27px 0 0;

  font-size: 14px;

  line-height: 1.7;

  color: rgba(255,255,255,.70);
}


/* =========================================================
 BUTTON
========================================================= */

.cta-actions {
  margin-top: 30px;

  display: flex;

  align-items: center;

  gap: 25px;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 900px) {

  .cta {
      height: 75svh;
      min-height: 650px;
  }

  .cta h2 {
      font-size: clamp(58px, 8vw, 78px);
  }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 560px) {

  .cta {
      height: auto;
      min-height: 680px;

      align-items: flex-end;
  }

  .cta .bg-video,
  .cta .media-fallback {
      object-position: 62% center;
  }

  .cta-overlay {
      background:
          linear-gradient(
              180deg,
              rgba(0,0,0,.18) 0%,
              rgba(0,0,0,.48) 42%,
              rgba(0,0,0,.90) 100%
          );
  }

  .cta-copy {
      padding-bottom: 75px;
  }

  .cta h2 {
      max-width: 100%;

      font-size: clamp(48px, 13vw, 60px);
  }

  .cta-copy > p {
      max-width: 330px;

      font-size: 13px;
  }

}

/* =========================================================
   FOOTER
========================================================= */
/* =========================================================
   LIVCENT PREMIUM FOOTER
========================================================= */

.site-footer {
  position: relative;

  background: #060707;

  color: #f5f1ea;

  padding: 100px 0 30px;

  overflow: hidden;
}


/* Very subtle top glow */

.site-footer::before {
  content: "";

  position: absolute;

  top: 0;
  left: 50%;

  transform: translateX(-50%);

  width: 65%;
  height: 1px;

  background:
      linear-gradient(
          90deg,
          transparent,
          rgba(200,165,94,.42),
          transparent
      );
}


/* =========================================================
 MAIN TOP AREA
========================================================= */

.footer-main {
  display: grid;

  grid-template-columns:
      minmax(0, 1.2fr)
      minmax(320px, .8fr);

  gap: 100px;

  align-items: end;
}


/* =========================================================
 BRAND
========================================================= */

.footer-brand {
  display: inline-flex;

  flex-direction: column;

  gap: 7px;

  margin-bottom: 36px;
}


.footer-brand strong {
  font-size: 18px;

  font-weight: 500;

  letter-spacing: .30em;

  color: #fff;
}


.footer-brand span {
  font-size: 11px;

  letter-spacing: .22em;

  color: var(--gold2);
}


/* =========================================================
 LARGE FOOTER STATEMENT
========================================================= */

.footer-intro h2 {
  max-width: 680px;

  margin: 0;

  font-family: var(--serif);

  font-size: clamp(50px, 5vw, 82px);

  line-height: .95;

  letter-spacing: -.045em;

  font-weight: 400;
}


.footer-intro h2 em {
  color: var(--gold2);

  font-style: italic;

  font-weight: 300;
}


.footer-intro > p {
  max-width: 500px;

  margin: 28px 0 0;

  font-size: 14px;

  line-height: 1.8;

  color: rgba(255,255,255,.58);
}


/* =========================================================
 RIGHT CTA
========================================================= */

.footer-contact {
  padding-bottom: 5px;
}


.footer-label {
  display: block;

  margin-bottom: 17px;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: .18em;

  text-transform: uppercase;

  color: var(--gold2);
}


.footer-contact h3 {
  margin: 0;

  font-family: var(--serif);

  font-size: clamp(32px, 3vw, 48px);

  line-height: 1.05;

  font-weight: 400;

  letter-spacing: -.035em;
}


/* =========================================================
 DEMO BUTTON
========================================================= */

.footer-demo-btn {
  width: 100%;

  max-width: 390px;

  min-height: 58px;

  margin-top: 30px;

  padding: 0 20px;

  border: 1px solid rgba(200,165,94,.65);

  display: flex;

  align-items: center;

  justify-content: space-between;

  font-size: 12px;

  letter-spacing: .10em;

  text-transform: uppercase;

  color: #fff;

  transition:
      background .3s ease,
      color .3s ease,
      border-color .3s ease;
}


.footer-demo-btn span {
  font-size: 18px;

  color: var(--gold2);
}


.footer-demo-btn:hover {
  background: var(--gold);

  color: #17130b;

  border-color: var(--gold);
}


.footer-demo-btn:hover span {
  color: #17130b;
}


/* =========================================================
 DIVIDER
========================================================= */

.footer-divider {
  height: 1px;

  margin-top: 75px;
  margin-bottom: 55px;

  background:
      rgba(255,255,255,.10);
}


/* =========================================================
 FOUR COLUMN INFORMATION AREA
========================================================= */

.footer-links-grid {
  display: grid;

  grid-template-columns:
      .75fr
      .85fr
      1.2fr
      1.2fr;

  gap: 65px;
}


/* =========================================================
 FOOTER COLUMN
========================================================= */

.footer-column {
  display: flex;

  flex-direction: column;

  align-items: flex-start;

  gap: 12px;
}


.footer-column .footer-label {
  margin-bottom: 8px;
}


/* ALL FOOTER LINKS >= 11PX */

.footer-column > a:not(.footer-big-link) {
  position: relative;

  font-size: 12px;

  line-height: 1.5;

  color: rgba(255,255,255,.62);

  transition:
      color .25s ease,
      transform .25s ease;
}


.footer-column > a:not(.footer-big-link):hover {
  color: #fff;

  transform: translateX(3px);
}


/* =========================================================
 PHONE / EMAIL
========================================================= */

.footer-big-link {
  font-family: var(--serif);

  font-size: clamp(21px, 1.7vw, 28px);

  line-height: 1.15;

  color: #f7f3ec;

  transition: color .3s ease;
}


.footer-big-link:hover {
  color: var(--gold2);
}


.footer-contact-column p {
  max-width: 260px;

  margin: 4px 0 0;

  font-size: 12px;

  line-height: 1.65;

  color: rgba(255,255,255,.45);
}


/* =========================================================
 FOOTER BOTTOM
========================================================= */

.footer-bottom-new {
  margin-top: 65px;

  padding-top: 24px;

  border-top:
      1px solid
      rgba(255,255,255,.08);

  display: grid;

  grid-template-columns: 1fr auto 1fr;

  gap: 30px;

  align-items: center;
}


/* Copyright */

.footer-copyright {
  font-size: 11px;

  color: rgba(255,255,255,.42);
}


/* =========================================================
 SOCIALS
========================================================= */

.footer-social {
  display: flex;

  align-items: center;

  gap: 10px;
}


.footer-social a {
  width: 38px;
  height: 38px;

  border:
      1px solid
      rgba(255,255,255,.24);

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: 11px;

  font-weight: 500;

  letter-spacing: .04em;

  color: #fff;

  transition:
      color .3s ease,
      border-color .3s ease,
      background .3s ease;
}


.footer-social a:hover {
  color: #16130d;

  background: var(--gold);

  border-color: var(--gold);
}


/* =========================================================
 LEGAL
========================================================= */

.footer-legal {
  display: flex;

  justify-content: flex-end;

  gap: 25px;
}


.footer-legal a {
  font-size: 11px;

  color: rgba(255,255,255,.42);

  transition: color .25s ease;
}


.footer-legal a:hover {
  color: #fff;
}


/* =========================================================
 TABLET
========================================================= */

@media (max-width: 900px) {

  .site-footer {
      padding-top: 80px;
  }


  .footer-main {
      grid-template-columns: 1fr;

      gap: 55px;
  }


  .footer-links-grid {
      grid-template-columns:
          1fr 1fr;

      gap: 50px;
  }


  .footer-contact {
      max-width: 520px;
  }

}


/* =========================================================
 MOBILE
========================================================= */

@media (max-width: 560px) {

  .site-footer {
      padding:
          70px
          0
          25px;
  }


  .footer-intro h2 {
      font-size: 48px;
  }


  .footer-intro > p {
      font-size: 13px;
  }


  .footer-links-grid {
      grid-template-columns: 1fr;

      gap: 42px;
  }


  .footer-divider {
      margin-top: 55px;
      margin-bottom: 45px;
  }


  .footer-bottom-new {
      grid-template-columns: 1fr;

      align-items: flex-start;

      gap: 25px;
  }


  .footer-social {
      order: 1;
  }


  .footer-copyright {
      order: 2;
  }


  .footer-legal {
      order: 3;

      justify-content: flex-start;
  }

}

/* ---------------------------------------------------------
   MOBILE HEADER
   Hamburger appears only on phones / narrow tablets.
--------------------------------------------------------- */

@media (max-width: 767px) {

  .site-header {
    height: 68px;
    padding: 0 20px;
  }

  .site-header nav,
  .site-header .mini-btn {
    display: none;
  }

  .menu-btn {
    display: block;
    margin-left: auto;
    background: none;
    border: 0;
    cursor: pointer;
  }

  .menu-btn span {
    display: block;
    width: 25px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
  }

  .mobile-menu {
    position: fixed;
    z-index: 90;
    inset: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    background: #080909;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity .3s ease,
      visibility .3s ease;
  }

  .mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-menu > a:not(.gold-btn) {
    font: 400 34px var(--serif);
  }
}


/* ---------------------------------------------------------
   PHONE
--------------------------------------------------------- */

@media (max-width: 560px) {

  :root {
    --width: calc(100% - 30px);
  }

  .brand b {
    font-size: 12px;
  }

  .brand small {
    font-size: 5px;
  }

  .hero h1 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .hero-copy {
    padding-top: 20px;
  }

  .buttons {
    flex-wrap: wrap;
  }

  .responds {
    height: 165vh;
  }

  .responds-story {
    width: min(100%, 300px);
  }

  .cta {
    height: 70svh;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

